// Posiziono il footer in fondo, se non lo è già abbastanza
// ------------------------------------------------------------------------------------------
function riposiziona_footer() {
	
	$("#spessore").height(0);
	
	var y_fondo = $(window).scrollTop() + $(window).height();
	var y_footer = $("#footer").position().top + $("#footer").height();
	
	if ( y_fondo-y_footer >= 0 )
		$("#spessore").height( y_fondo-y_footer-20 );

}





$(document).ready( function () {
	
	
	// Metto il target="_blank" a tutti i link
	$(".sponsor a, .dx a").each( function () {
		$(this).attr("target", "_blank");
	});
	
	
	// Correzione PNG per IE6
	$(document).pngFix();


	// 47, 94, 141, 188

	// Hover dei bottoni del menu
	$("#menu_alto li a").hover(

		function() {
			if (! $(this).parent().hasClass("selezionato") )
				$(this).css({backgroundPosition: "0px -47px"});
			else
				$(this).css({backgroundPosition: "0px -141px"});

		},
		function () {
			if (! $(this).parent().hasClass("selezionato") )
				$(this).css({backgroundPosition: "0px 0px"});
			else
				$(this).css({backgroundPosition: "0px -94px"});
		}
	);
	
	riposiziona_footer();
	
	$(window).resize( function () {
		riposiziona_footer();
	});

});

