// JavaScript Document


$(document).ready(function (){
	var stato = 0;
	$("#promo").hide();
	
	width = $("#promo").width();
	height = $("#promo").height();
	marginLeft = -(width / 2);
	//marginTop =  -(height / 2);
	
	$("#promo").css({
		width: width,
		height: height,
		left: "50%",
		marginLeft: marginLeft,
		top: "100"
	});
	$("#promo #title").css({width: width-30});
	
	$("#promo").fadeIn(400);
	stato = 1;
	
	$("a#chiudi").click(function(){
		if (stato = 1) {
			$("#promo").fadeOut(500);
			stato = 0;
		}
		
		return false;
	
	})
	
							
});
