$(document).ready(function() {    


	/**
	 * Francesco:
	 * The plugin has been hardcoded somewhere instead of being modified on the ext side.
	 * If I got the hands on who messed up with my plugin ...
	 */
	/*
	$("#mask").css({  
		"opacity": "0.7"  
	}); 
	
	$("#mask").fadeIn("slow");
	$("#boxes").fadeIn("slow");
	*/

$("#mask").click(function(){

		$("#mask").fadeOut("slow");
		$("#boxes").fadeOut("slow");	
});


$("a.popUpCloser").click(function(){

		$("#mask").fadeOut("slow");
		$("#boxes").fadeOut("slow");
	
});
 
});
