startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		if (navRoot){
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
}
window.onload=startList;

function doporucujem(url){
	adresa = window.prompt('Zadajte prosím e-mailovú adresu k odporučeniu tejto stránky','');
	mail=/^.+@.+\..{2,4}$/
	if (adresa) {
		if (mail.test(adresa)==true){
			window.alert("E-mail bol úspešne odoslaný.");
			
			location.href='http://www.aujob.sk/custom/custom-process.php?odporucenie&email='+ adresa +'&url='+url;	
		}
		else window.alert("Zadali ste nesprávnu e-mailovú adresu.");
	}
}

//* FACEBOOK

function addToFacebook(title, url){
	location.href='http://www.facebook.com/sharer.php?u='+url+'&t='+title;
}

//* TWITTER

function addToTwitter(title, url){
	location.href='http://twitter.com/home?status=' + title + ' - ' + url;
}
