function over_style(c,n){
	var num = 8;
	
	for(var i=1; i<=num; i++){
		$("#c_"+c+"_"+i).removeClass();
		$("#c_"+c+"_"+i).addClass("Br_ln");
		if(8 == i){
			$("#c_"+c+"_"+i).css("background","");
			$("#c_"+c+"_"+i).height(33);
		}
	}
	$("#c_"+c+"_"+n).removeClass();
	$("#c_"+c+"_"+n).addClass("Br_ln1");
	if(8 == n){
		$("#c_"+c+"_"+n).css("background","none");
		$("#c_"+c+"_"+n).height(63);
		$("#c_"+c+"_"+n).css("borderBottom","0px");
	}
}



function switch_div(n){
	var m = 3;
	for(var i=1; i<=m; i++){
		if(i != n){
			$("#show_"+i).hide();
			$("#crt_"+i).removeClass();
		}else{
			$("#show_"+i).show();
			$("#crt_"+i).addClass("act");
		}
	}
}

function switch_left_div(goods_type,type_val){
	if(goods_type && type_val){
		if(goods_type == 'xl'){
			$("#goods_type_xl_"+type_val).show();
			$("#goods_type_gz_"+type_val).hide();
			$("#swi_head_"+type_val+"_xl").addClass("act");
			$("#swi_head_"+type_val+"_gz").removeClass();			
		}
		if(goods_type == 'gz'){
			$("#goods_type_xl_"+type_val).hide();
			$("#goods_type_gz_"+type_val).show();
			$("#swi_head_"+type_val+"_xl").removeClass();
			$("#swi_head_"+type_val+"_gz").addClass("act");
		}
	}
}

//$(document).ready(function() {
//	function index_0905_area(tag,num){
//			var name1 = tag + "_pic_" + num;
//			var name2 = tag + "_a_" + num;
//			
//			//alert(name1);
//			$("#" + name1).mouseover(function(){  
//				
//				$("#" + name2).css({"text-decoration":"underline","color":"#f60"});
//			}).mouseout(function(){  
//				$("#" + name2).css({"text-decoration":"none","color":"#36c"});
//			}); 
//			
//			$("#" + name2).mouseover(function(){  
//				$("#" + name2).css({"text-decoration":"underline","color":"#f60"});
//			}).mouseout(function(){  
//				$("#" + name2).css({"text-decoration":"none","color":"#36c"});
//			}); 
//		
//	}
//	var i = 1;
//	for(i=1;i<=4;i++){
//		index_0905_area("mobile",i);
//		index_0905_area("nb",i);
//		index_0905_area("dcdv",i);
//		index_0905_area("mp3",i);
//		index_0905_area("fit",i);
//	}
//	
//});
