
// Function's for all shop by landing page(color, style, size, brand)

// variables are globaly decleared here 

    var browserName = null;

	function ImgRollover(callerId, newSrc) {		
		document.getElementById(callerId).src = newSrc;
	}
	
    function showDivs(id) {	
        var div = document.getElementById(id);
        if (!div) return;			
        div.style.visibility = 'visible';
		div.style.display = 'block';
        div.style.position = 'absolute'; 			
    }	

    function hideDivs(id){
        var div = document.getElementById(id);
        if (!div) return;
        div.style.visibility = 'hidden';
		div.style.display = 'none';
        div.style.position = 'absolute';
    }




