﻿$(document).ready(function(){
		$(".search input").focus(function(){
			$(this).val(''); 	
		});
		$(".search span").click(function(){
			var key=$("#keywords").val();	
			if(key=='' || key=='输入产品名称')
			{
				$("#keywords").val('输入产品名称');
			}else
			{
				parent.location='search.php?key='+encodeURI(key);		
			}
		});
		/*换色*/
		$(".protable tr").mouseover(function(){ 
				$(this).addClass("t_over");//鼠标移到class为tourPrice的表格的tr上时，执行函数 
		}); 
		$(".protable tr").mouseout(function(){ 
				$(this).removeClass("t_over");//移除该行的class 
		 }); 
		$(".protable tr:even").addClass("t_color");//even----奇数,and odd----偶数 
		$("div.proname").hover(function(){
			//$(this).addClass('pro_hover');								
		},function(){
			//$(this).removeClass('pro_hover');			
		})
		var img_width=$(".pro_bigimg img").width();
		if(img_width>620)
		{
			$(".pro_bigimg img").width(620);
		}
});

