// copyright 1999-2011 www.vagabondo.net
// Anti-frames
if (window != top)  self.top.location=document.location;
// JQuery menu principale
function mainmenu(){
// $(" .navjqm ul ").css({display: "none"}); Opera Fix
$(" #navnuov li.navjqm ").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

 $(document).ready(function(){
	mainmenu();
});
// Apre foto
function aprifoto(dir,chi){
window.open('/xar_caffeimg/'+dir+'/grandi/foto0.html?' + chi,'','width=250,height=100,toolbar=no,status=no,menubar=no,scrollbar=no,location=no,resizable=yes');
}
// Mostra menu
function menu(cosa) {
document.getElementById(cosa).style.display="block" }
function togli(cosa) {
document.getElementById(cosa).style.display="none" }
// Mostra/nasconde block:
function mostra(chi){
var come = document.getElementById(chi).style.display;
if (come=='block') { document.getElementById(chi).style.display='none';
} else { document.getElementById(chi).style.display='block' }
}
// Espande/contrae block:
function espandi(chi){
var come = document.getElementById(chi).style.overflow;
if (come=='visible') { document.getElementById(chi).style.overflow='hidden';
} else { document.getElementById(chi).style.overflow='visible' }
}


