﻿$(document).ready(function(){
	$("#tool").mouseover(function(){            //显示右侧工具栏
		//alert("haha");
		$(".tool_menu").show();
	}).mouseout(function(){            //隐藏右侧工具栏
		//alert("haha");
		$(".tool_menu").hide();
	})
	
	$("#home_page").click(function(){      //设置为首页，nnd只对ie有效
		  if (document.all) {  
			document.body.style.behavior='url(#default#homepage)';  
			document.body.setHomePage('http://www.playui.com');  
		   
		  } else if (window.sidebar) {  
			if(window.netscape) {  
				try {    
					netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");    
				} catch (e) {    
					alert( "该操作被浏览器拒" );    
				}  
			}   
			var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);  
			prefs.setCharPref('browser.startup.homepage','http://www.goto1234.com');  
		  }   
	})
	
	$("#shoucangjia").click(function(){      //设置为首页，nnd只对ie有效
		 if (document.all) {  
       		 window.external.addFavorite('http://www.playui.com', 'playui');  
			 alert("已将 playui.com 加入收藏夹");
		} else if (window.sidebar) {  
			window.sidebar.addPanel('playui', 'http://www.playui.com', ""); 
			alert("已将 playui.com 加入收藏夹");
		}  
	})

	
})


