function switch_sidebar(){
	menu=document.getElementById("right");
	testo=document.getElementById("left");
	label=document.getElementById("link_switch");
	if (menu.style.display!="none"){
		menu.style.display="none";
		testo.style.width="700px";
		label.innerHTML="Mostra menu";
	} else {
		menu.style.display="block";
		testo.style.width="457px";
		label.innerHTML="Nascondi menu";	
	}
}

function cancella_cerca(){
	if(this.value=="Cerca nel sito")
		this.value="";
}

function refill_cerca(){
	if(this.value=="")
		this.value="Cerca nel sito";
}

function cancella_email(){
	if(this.value=="Tua email")
		this.value="";
}

function refill_email(){
	if(this.value=="")
		this.value="Tua email";
}

window.onload = function() {
	document.getElementById("SearchTextsearch").onfocus = cancella_cerca;
	document.getElementById("SearchTextsearch").onblur = refill_cerca;
	if(document.getElementById("email")){
		document.getElementById("email").onfocus = cancella_email;
		document.getElementById("email").onblur = refill_email;
	}
}

function starsHover(stars) {
	for (i=1;i<=5;i++) {
		if (stars>=i)
			document.getElementById("star"+i).setAttribute("src","/img/star_over.gif");
		else
			document.getElementById("star"+i).setAttribute("src","/img/star_off.gif");
	}
}
function starsNormal(stars) {
	for (i=1;i<=5;i++) {
		if (stars>=i)
			document.getElementById("star"+i).setAttribute("src","/img/star_on.gif");
		else
			document.getElementById("star"+i).setAttribute("src","/img/star_off.gif");
	}
}

function vota(tipoPag,id,voto) {
	if (tipoPag=="pag")
		window.navigate("/pagine/vota/"+id+"/"+voto);
	else
		self.location.href="/lavorazioni/vota/"+id+"/"+voto;
}

/*function signup(){
	mail=document.getElementById("mail");
	top.location.href = "http://newsletter.wwwsandroni/?p=subscribe&id=1&email=" + mail.value;
	//alert("http://newsletter.wwwsandroni/?p=subscribe&id=1&email=" + mail.value);
}*/