$(document).ready(function() {

	 $.preload([

		"http://www.sanremopromotion.com/images/x1.png",
		"http://www.sanremopromotion.com/images/x2.png"
    		]

		);

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

	$(document).pngFix();

	showClose();

});

function showClose()
{
	if ($("#close-box-centrale").length>0) {

		$("#close-box-centrale").show();

		$("#close-box-centrale img").hover(

			function() {

				$(this).attr("src","http://www.sanremopromotion.com/images/x2.png");


			},

			function() {


				$(this).attr("src","http://www.sanremopromotion.com/images/x1.png");

			});

		$("#close-box-centrale a").click(function(e) {

			$("#close-box-centrale").hide();
			$("#box_centrale").fadeOut(500);
			e.preventDefault();


		});



	}
}


