/*<![CDATA[*/
		   
/*****************************************************************************
//-> START Window Load
*****************************************************************************/

$(window).load(function () {
	
// choose lang
	$("a.he").click(function (e) {
		e.preventdefault
		$.cookie('lang',1, { expires:365, path:'/'});
		window.location.reload(true);
		return false;
	});
	$("a.en").click(function (e) {
		e.preventdefault
		$.cookie('lang',0, { expires:365, path:'/'});
		window.location.reload(true);
		return false;
	});

// --> Start Disable '#' links from being clicked
	$("a[href^='#']").click(function() {
		return false;
	});

// --> Init External Links
	$("a[rel*='external']").attr("target","_blank");
	
// --> Init SPAM Email links
	$("a[href^='mailto:']").each(function(){
		var mail = $(this).attr("href").replace("mailto:","");
		var replaced = mail.replace("/at/","@");
		$(this).attr("href","mailto:"+replaced);
		if($(this).text() == mail){ 
			$(this).text(replaced);
		}
	});

});

/*****************************************************************************
//-> END Window Load
*****************************************************************************/

/*]]>*/
