
//$(document).ready(init);

function init() {	
	var $banner = $("div#banner").appendTo("body");

	var t = screen.height - $banner.height();
	t = (t >= 0) ? t / 2 : 0;
	
	$.blockUI({
		message: $banner
		, showOverlay: false
		, forceIframe: true
		, centerX: true
		, centerY: true
		, css: {
			width: "465px"
			, top: t + "px"
			, cursor: "default"
			, border: "0px solid white"
			, position: "absolute"
		
		}
	});
}

function unblock() {
	$.unblockUI();
}
