$(function(){
	/*按品牌查价*/
	$(".according_brand button").click(function(){
		$(".according_brand button").toggleClass("checked");
		$(".according_brand").toggleClass("brand_nonce");
		var brand_check=$(".brand_check");
		if (brand_check.is(':visible')){
			brand_check.hide(400);
		}else{
			brand_check.show(400);
		}
	});
	/*最新报价商品缩略图_tips*/
	$(".goods_name").hover(function(){
	  $(this).find(".goods_tip").css("display","block");
	},function(){
	  $(this).find(".goods_tip").css("display","none");
	});
	/*最新报价_list*/
	$(".price_list tbody tr").mouseover(function(){  
       $(this).addClass("tr_hover");}).mouseout(function(){ 
       $(this).removeClass("tr_hover");
	 });

	$(".acti_goods_name").hover(function(){
	  $(this).find("+.goods_tip").css("display","block");
	},function(){
	  $(this).find("+.goods_tip").css("display","none");
	});
	/*查看价格走势图_tips*/
	$(".price_circs_up").hover(function(){
	  $(this).find(".price_circs_tip").css("display","block");
	  $(this).css("position","relative");
	},function(){
	  $(this).find(".price_circs_tip").css("display","none");
	  $(this).css("position","static");
	});
	$(".price_circs_down").hover(function(){
	  $(this).find(".price_circs_tip").css("display","block");
	  $(this).css("position","relative");
	},function(){
	  $(this).find(".price_circs_tip").css("display","none");
	  $(this).css("position","static");
	});
	$(".price_circs_point").hover(function(){
	  $(this).find(".price_circs_tip").css("display","block");
	  $(this).css("position","relative");
	},function(){
	  $(this).find(".price_circs_tip").css("display","none");
	  $(this).css("position","static");
	});
});
