function add_to_bm(){
	if (jQuery.browser.mozilla) { 
		window.sidebar.addPanel('אתר פנימיית בויאר', 'http://boyer.co.il',"");
	} else if(jQuery.browser.msie) { 
		window.external.AddFavorite( 'http://boyer.co.il', 'אתר פנימיית בויאר'); 
	}else {
		return true;
	}
}

function setHomepage()
{
	if (jQuery.browser.msie) {
        document.body.style.behavior='url(#default#homepage)';
		document.body.setHomePage('http://boyer.co.il');
    }
    else if (jQuery.browser.mozilla) {
		if(window.netscape) {
			try {  
				netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");  
			}  
			catch(e) {  
				alert("פעולה זו נאסרה ע\'\'י הדפדפן שלך. אם אתה רוצה לאפשר את הפעולה עבור ל\r\nabout:config\r\nבדפדפן שלך ושנה את ההגדרה\r\nsigned.applets.codebase_principal_support\r\nל\r\ntrue");  
			}
		} 
		var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
		prefs.setCharPref('browser.startup.homepage','http://boyer.co.il');
	}
}

window.onload = function(){
	if($('#loading')){
		$("#loading").bind("ajaxSend", function(){
			$(this).show();
		}).bind("ajaxComplete", function(){
			$(this).hide();
		});
	}
	if($('#forcal')){
		$("#forcal").bind("ajaxSend", function(){
			$(this).hide();
		}).bind("ajaxComplete", function(){
			$(this).show();
		});
	}
}
