$(document).ready(function() {        
	//hideAd();
	   $.blockUI({
			message: $("#divPizzaAd")
			, css: {
				backgroundColor: "transparent"
				,border: "0"
				,width:"700px"
				,left: "18%"
				,top: "10%"
				,fadeOut: 100
				
			}
			, overlayCSS: {
				opacity: 0.5
				,cursor: "default"
			}
		});
	//	setTimeout(hideAd, 1200000);
});

$(document).ready(function() {        
	  $("#btnClose").click(function() {        
			hideAd();
			return false;
	  });
   
});

function hideAd() {
	$.unblockUI({
		fadeOut:  0
	});
	$("#divMovie").media({
		src: "http://www.pizzacorner.com/images/movie/AD_CONIZZA.wmv",
		autoplay: 1,
		width: 240,
		height: 240,
		bgColor: "transparent",
		params: {
						controller: true,
						loop: 0,
						showstatusbar: false,
						enablecontextmenu: false,
						bgcolor: "#ffffff",
						transparentstart: true
					}
	});
	
}