// JavaScript Document

$(document).ready(function() {
	
	$("#openRegolamento").click(function() {
		BlockUIRegolamento();			 
	});
	$("#openZoom").click(function() {
		BlockUIZoom();			 
	});
	
	$.ifixpng('img/pixel.gif'); 
	$('img[src$=.png]').ifixpng();
	
	$(".hover").mouseover(function() {
		$(this).attr("src",$(this).attr("src").replace("_OFF","_ON"));			   
	}).mouseout(function() {
		$(this).attr("src",$(this).attr("src").replace("_ON","_OFF"));	
	});
});




