// JavaScript Document

$(document).ready(function() {
	//目录
	$(".menus").mouseover(function() {
			$(this).attr("background","../images/menu_bg_t.jpg");
										})
	$(".menus").mouseout(function() {
			$(this).attr("background","../images/menu_bg.jpg");
									   })
	
	//产品分类
	$(".pro_l").mouseover(function() {
			$(this).css("background-color","#000000");
								   })
	$(".pro_l").mouseout(function() {
			$(this).css("background-color","#333333");
								  })
	
	//产品列表
	$(".p_list").mouseover(function() {
			$(this).css("border","1px solid #FF0000");
									})
	$(".p_list").mouseout(function() {
			$(this).css("border","1px solid #666666");
								   })
	
})