	function ShowMenu(obj, it)
	{
		var top = $(obj).offset().top;
		var left = $(obj).offset().left;
		$("#menu").css("top", top+16);
		$("#menu").css("left", left-5);
		$("#menu").show().fadeTo("fast", 0.8);
		$("#menu").find("div").each(function(i){
			if(i==it)
			{
				$(this).show();
			}
			else
			{
				$(this).hide();
			}
		});
	}
	
	function HideMenu()
	{
		$("#menu").hide();
	}
	function ShowMenu2()
	{
		$("#menu").show();	
	}
	//设为首页
	function SetIndex(obj)
	{
		obj.style.behavior='url(#default#homepage)';
		obj.setHomePage(location.href);
	}
	
	//收藏本页
	function SetKeep()
	{
		window.external.AddFavorite(location.href, document.title);
	}
	
	function BusMenu(obj)
	{
		var top = $(obj).offset().top;
		var left = $(obj).offset().left;
		$("#intsot").css("top", top+20);
		$("#intsot").css("left", left);
		$("#intsot").show().fadeTo("fast", 0.8);
	}
	
	function HidBusMenu()
	{
		$("#intsot").hide();
	}
	
	function HIdItem(i)
	{
		$("#item").find("div").each(function(i){
											 $(this).hide();
											 });	
		$("#item"+i).show();
	}

