
/***************排行样式切换****************
//http://icon.zol-img.com.cn/js/dvd_index.js
*/
/*
$(".switc").children().not("r").mouseover(function(){

	if($(this).attr("class")!="act"){
		var doT =$(this).siblings(".act");
		doT.attr("class","nor");
		var temp_id =doT.attr("rel");
		$("#"+temp_id).hide();

		var current_id =$(this).attr("rel");
		$(this).attr("class","act");
		$("#"+current_id).show();	
	}
})
*/

$(".switc").children().mouseover(function(){

	if($(this).attr("class")=="nor"){
		var doT =$(this).siblings(".act");
		doT.attr("class","nor");
		var temp_id =doT.attr("rel");
		$("#"+temp_id).hide();

		var current_id =$(this).attr("rel");
		$(this).attr("class","act");
		$("#"+current_id).show();	
	}
})

/***************头部品牌样式切换*****************/
//http://icon.zol-img.com.cn/js/dvd_index.js
$(".vid").hover(
	function (){
		var currentId = $(this).attr("rel");
		$("#"+currentId).show();
	},
	function (){
		var currentId = $(this).attr("rel");
		$("#"+currentId).hide();
	}
)

$("#tod").hover(
	function (){
		$('#m4').show();
	},
	function (){
		$('#m4').hide();
	}
)

$(".s_h").hover(
	function (){
		$(this).show();
	},
	function (){
		$(this).hide();
	}
)

/***************搜索框样式切换*****************/
//http://icon.zol-img.com.cn/js/dvd_index.js
//onmousedown="this.value=\'\'"
$("#s_key").mousedown(
					
	function (){
		
		var keyt =($("#s_key").val());	

		if (keyt == "请输入您要找的产品"){
//		if (keyt != ''){
			$("#s_key").val(""); 
			$(this).removeClass("search_l");
			$(this).addClass("search_b");		
		}
	}
)

