// JavaScript Document
$(function(){
	var weburl=$("#weburl").val();
	//改变背景
	$(".top_nav li").hover(function () {
		$(this).css({"background":"url("+weburl+"images/top_nav_li_hover.jpg) right 0;"});
	},function () {
		$(this).css({"background":"url("+weburl+"images/top_nav_li_bg.jpg) right 0;"});
	});
	//显示子菜单
	$(".top_nav li:eq(1)").hover(function(){
		$(".sub1").show("fast");
		$(".sub2").hide("fast");
	});
	$(".top_nav li:eq(4)").hover(function(){
		$(".sub2").show("fast");
		$(".sub1").hide("fast");
	});
});
