$(window).load(function () {
	$('html').css({overflow:'hidden'});
	if(document.getElementById("MDL_overlay") === null){
			$('body').append('<div id="MDL_overlay"></div>');
			if($.browser.msie && $.browser.version < 7){
				$('body','html').css({height: '100%', width: '100%'});
				$('#MDL_overlay').css('position','absolute');
				$('#MDL_overlay').css('top',$(document).scrollTop());
			}
	}
	if(document.getElementById("MDL_window") === null){
			$('body').append(
				'<div id="MDL_window">' +
				'<h2>V.A. / CHAMPIONSHIP MIDNIGHT CARIZMA 2</h2>' +
				'<p><img src="CMC2.jpg" width="350" height="311" /></p>' +
				'<p>2011.6.25.(SAT) on sale <br />' +
				'incl. <br />' +
				'Kagami - Guardians Hammer <br />' +
				'Arai Lazer - Rumbull Rocka (Kagami Remix) <br />' +
				'for more info check out <a href="http://www.arights.co.jp/label/carizma/" target="_blank">Carizma site</a> / <a href="http://www.facebook.com/pages/CARIZMA/100730526687720" target="_blank">facebook!</a></p>' +
				'<div class="md_btn">' +
				'<a href="javascript:void(0);" id="md_ok">close</a>' +
				'</div>' +
				'</div>'
			);
			if($.browser.msie && $.browser.version < 7){
				$('#MDL_window').css('position','absolute');
				$('#MDL_window').css('top',($(document).scrollTop() + $(window).height()/2) + "px");
			}
	}
	$('#MDL_overlay').show();
	$('#MDL_window').fadeIn('slow');
	$('#md_ok').click(function () {
		MDL_eliminate();
	});
	return false;
});
function MDL_eliminate() {
	$('html').css({overflow:''});
	$('#MDL_overlay').fadeOut('fast');
	$('#MDL_window').fadeOut('fast');
	if($.browser.msie && $.browser.version < 7){
		$("body","html").css({height: "auto", width: "auto"});
	};
	setTimeout('MDL_remove()',500);
}
function MDL_remove() {
	$('#MDL_overlay').remove();
	$('#MDL_window').remove();
}
