JQ(document).ready(function(){ 
	//sovrapposizione delle case nella home page
	JQ("#sovra").hover(function(){
		JQ("#bg").css({opacity: 0.65});
		JQ("#myfoto").fadeIn("slow");
	}, function(){
		JQ("#myfoto").fadeOut("fast");
	});
	//Menu Corrente
	var url = location.pathname+location.search;
	url = url.substr(1);
	/*if(location.search=='?home-english'){
		url='index.php';
	}*/
	JQ("a[href='"+url+"']").addClass("corrente");
	JQ("a[href='"+url+"']").attr("href","javascript:void(0);");
	
	//Apertura commenti Guestbook
	JQ("a.readmore").click(function(){
		JQ("a.readmore").show();
		JQ("span.extend").slideUp("fast");
		JQ(this).parent().find(".extend").show();
		JQ(this).hide();
	});
});
