$(function(){
	
	// 我要评论弹出层：商品详细页评论层加载时隐藏
	$(".product_score_pop").hide();
	//$("#product_score_comment").click(function(){$(".product_score_pop").show();});
	
    // 基本信息产品切换：商品详细页小图切换并显示大图
	$("#preview>.jqzoom").hide();
	$("#preview>.jqzoom").eq(0).show();
	$("#list>li").mouseover(function(){
		$("#preview>.jqzoom").eq($(this).index()).show().siblings().hide();
	});
	
	//添加单个人发布的星：商品详细页中的评论层打分更换星星颜色
	var pingluncount=$(".product_score_content_list").length;
	for(var x=0;x<pingluncount;x++)
	{
	    $("#pingfen"+x).html("");
	    var pingfen=$("#hidpinglun"+x).val();
	    for(var y=0;y<5;y++)
	    {
	        if(y<parseInt(pingfen))
	        {
	            $("#pingfen"+x).append("<img src=\"../images/sales/solidstar_small.gif\" width=\"14\" height=\"13\" />");
	        }
	        else
	        {
	            $("#pingfen"+x).append("<img src=\"../images/sales/hollowstar_small.gif\" width=\"14\" height=\"13\" />");
	        }
	    }
	}

	// 选中打勾的属：商品详细页中的属性切换
	$("#product_property>ul>li").addClass("product_property_nosel");	
	$("#product_property>ul>li").click(function(){
		$(this).addClass("product_property_sel").siblings().attr("class","product_property_nosel");
	});
	
});
