var strProduct = "";
					
var productImg = ["prod_pic01.jpg",					
				  "prod_pic02.jpg",
				  "prod_pic03.jpg",
				  "prod_pic04.jpg",
				  "prod_pic05.jpg",
				  "prod_pic06.jpg",
				  "prod_pic07.jpg",
				  "prod_pic08.jpg",
				  "prod_pic09.jpg",
				  "prod_pic10.jpg",
				  "prod_pic11.jpg",
				  "prod_pic12.jpg",
				  "prod_pic13.jpg",
				  "prod_pic14.jpg",
				  "prod_pic15.jpg",
				  "prod_pic16.jpg",
				  "prod_pic17.jpg"
				  ]

function loadProduct(){
	
	for(i = 0; i < productImg.length; i++){
		
		strProduct += '<td width="140"><a href="http://www.samsungplay.com.cn/product/camcoders_cameras_main.jsp" target="_blank"><img style="padding:2px;width:130px;height:130px;margin-right:15px;background:#fff;border:1px solid #c6c6c6;" src="img/product/' + productImg[i]  + '" /></a></td>';
	
	}  
	
	strProduct = '<table cellpadding="0" cellspacing="0"><tr>'
			   +  strProduct
			   + '</tr></table>'

	return strProduct; 
}

loadProduct();



var speed = 30;
var product = document.getElementById("product");
var product1 = document.getElementById("product1");
var product2 = document.getElementById("product2");



product1.innerHTML = strProduct;

function Marquee(){
	if(product2.offsetWidth - product.scrollLeft <= 0){												
		product.scrollLeft -= product1.offsetWidth;
	}
	else{
		product.scrollLeft ++;
	}
}

if(document.getElementById("product1").getElementsByTagName("IMG").length > 4){
	
	product2.innerHTML = strProduct;
	
	var MyMar = setInterval(Marquee,speed)
	product.onmouseover = function() {clearInterval(MyMar)}
	product.onmouseout = function() {MyMar = setInterval(Marquee,speed)}
		
}
