$(function(){
	var pos=0;
	var iL=[];
	var iM=[];
	$(".productsImgList > li").each(function(){
		var t=$(this).children().attr("href").match(/\/([^/]+(.jpg|.png|.gif)$)/);
		var i=$(".productsImgList > li").index(this);
		iL[i]=t?t[1]:"";
		iM[i]=$(this).children().children().attr("src").replace(/\/s([0-9]{2})(.jpg|.png|.gif)$/,"/l$1$2");
		$(this).children().get(0).href="javascript://";
		$("#lbox0").show();
	});
	$(".productsImgList > li > a").click(function(){
		$(".productsImgList > li > a").css({backgroundColor:"#ffffff"});
		$(".productsImgList > li > a > img").css({borderColor:"#d3d3d3"});
		$(this).css({backgroundColor:"#797979"});
		$(this).children().css({borderColor:"#797979"});
		pos=$(".productsImgList > li").index($(this).parent());
		$("#lbox"+pos).show();
		$(".productsZoom > a").not("#lbox"+pos).hide();
	});
	$(".productsImgList > li > a").hover(
		function(){
			var t=$(".productsImgList > li").index($(this).parent());
			if(t!=pos){
				$(this).css({backgroundColor:"#797979"});
				$(this).children().css({borderColor:"#797979"});
			}
			$(".swimg").attr("src",iM[t]);
		},
		function(){
			if($(".productsImgList > li").index($(this).parent())!=pos){
				$(this).css({backgroundColor:"#ffffff"});
				$(this).children().css({borderColor:"#d3d3d3"});
			}
			$(".swimg").attr("src",iM[pos]);
		}
	);
});
