$(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]);
		}
	);
*/
	var a=0;
	function activate(n){
		$(".zoomContainer > .zoom").hide();
		$(".color ul li a img").css({borderColor:"#1c1207"});
		if($(".color ul li:eq("+n+") a img").hasClass("on"))$(".zoomContainer > .z"+n).show();
		$(".color ul li:eq("+n+") a img").css({borderColor:"#b07d40"});
		$(".mainimg img").attr({src:"./img/l"+n+".jpg",width:330,height:400});
		if($(".color ul li:eq("+n+") a img").attr("name")!=""){
			$(".btnCart a").show();
			$(".btnCart a").attr({href:"http://www.hanesbrandsinc.jp/products/champion_detail.php?product_id="+$(".color ul li:eq("+n+") a img").attr("name")});
		}else{
			$(".btnCart a").hide();
		}
		a=n;
	}
	$(".color ul li").click(function(){
		activate($(".color ul li").index(this));
	});
	$(".color ul li a").attr({href:"javascript://"});
	$(".color ul li").hover(
		function(){
			var i=$(".color ul li").index(this);
			if(i!=a){
				$(this).children().children().css({borderColor:"#b07d40"});
				$(".mainimg img").attr({src:"./img/l"+i+".jpg",width:330,height:400});
			}
		},
		function(){
			var i=$(".color ul li").index(this);
			if(i!=a){
				$(this).children().children().css({borderColor:"#1c1207"});
				$(".mainimg img").attr({src:"./img/l"+a+".jpg",width:330,height:400});
			}
		}
	);
	$(".btnCart > a").click(function(){
		_gaq.push(['_trackEvent',"item2010fw",$("#areaTopicPath a:last").text(),$(".color ul li:eq("+a+") a").attr("id")]);
	});
	activate(0);
	
});
