
$(document).ready(function() {
	
	$(document).pngFix();
	
	$("#tre_strutture li").hover(
			
			function() {
				
				$(this).children("div").show().addClass("hover");
				
			},
			
			function() {
				
				$(this).children("div").hide().removeClass("hover");
			}
	
	
	
	);
	
	$("#tre_strutture li div").click(function(e) {
		
		
		location=$(this).parent().children("a").attr("href");
		e.preventDefault();
		
	});
	
	$("#menu_fotogallery").fancybox({
		
		hideOnContentClick: false,
		type: 'iframe',
		width: 600,
		height:650, // era 650
		autoScale: false,
		titleShow: true

	});
	
	$("a.blank").attr("target","_blank");
	
	
});


function initFotoGallery()
{
	}




