//interval1 = setInterval ( "checkSlider()",400 );

function windowResize(){
		window.location=window.location; 
}



//alert(document.getElementById("product_ul").offsetWidth);
//alert(document.getElementById("product_ul_contain").offsetWidth);


/*var width1=document.getElementById("product_ul_contain").offsetWidth
var width2 = document.getElementById("product_ul").offsetWidth;
alert (width1);
hello1 = width1 - 2;
alert(hello1);
hello2 = hello1 + "px";
alert(hello2);*/

function checkSlider(){
		if (isPpage == true){
			
				if ((document.getElementById("product_ul").offsetWidth) < (document.getElementById("product_ul_contain").offsetWidth)) {
						document.getElementById("slider_id").style.display = 'none';
						document.getElementById("product_ul").style.width = '100%';
						document.getElementById("product_ul").style.textAlign = 'center';
						}
				
				else if ((document.getElementById("product_ul").offsetWidth) > (document.getElementById("product_ul_contain").offsetWidth)){
						document.getElementById("slider_id").style.display = 'block';
						document.getElementById("product_ul").style.width = 'auto';
						}	
	
			}	
	
}

