//首页鼠标滑过图片放大效果
$(function(){
	var $imgs=$(".index_pro ul li a img");
	$imgs.hover(function(){
					$(this).animate({width:"149px",height:"115px"},200);
					$(this).css("border","1px #f00 solid");
				},
				function(){
					$(this).animate({width:"140px",height:"108px"},200);
					$(this).css("border","1px #000 solid");
				}
	)
})

//首页图片展开隐藏效果
$(function(){
	$(".index_pro ul li:gt(4)").hide();
	$(".index_more_a").toggle(
		function(){
			$(".index_pro ul li:gt(4)").slideDown(600);
			$(".index_more_a").text("hide");
		},
		function(){
			$(".index_pro ul li:gt(4)").slideUp(600);
			$(".index_more_a").text("more");
		}
	);
})

//产品栏目页more按钮效果
$(function(){
	$(".pro_more_p").hide();
	$(".pro_more_a").toggle(
		function(){
			var index=$(".pro_more_a").index(this);
			$(this).text("hide");
			$(".pro_more_p:eq("+index+")").slideDown(400);
		},
		function(){
			var index=$(".pro_more_a").index(this);
			$(this).text("more");
			$(".pro_more_p:eq("+index+")").slideUp(400);
		}
	);
})

