$(document).ready(
	function(){
	/* This code is executed after the DOM has been completely loaded */
		
	$('.nav a.scroll,.footer a.up').click(function(e){
										  
		// If a link has been clicked, scroll the page to the link's hash target:
		
		$.scrollTo( this.hash || 0, 1000);
		e.preventDefault();
	});
	
	
	
});

function switchLang(lang) 
{
	var str = document.URL.toString();
	if (lang == "Heb")
	{
		str = str.replace(".html", "Heb.html");
	}
	else 
	{
		str = str.replace("Heb.html", ".html");
	}
	document.getElementById("langButt").href = str;
}

