release = false;
var now = new Date();
var live = new Date(2009,9,27);
if(now >= live) { release = true; }

if(release) {
//kudos to http://www.sohtanaka.com/web-design/simple-page-peel-effect-with-jquery-css/
	$(document).ready(function(){
		$("#pageflip").show();
		$("#pageflip").hover(function() {
			$("#pageflip img , .msg_block").stop()
				.animate({
					width: '307px', 
					height: '319px'
				}, 500); 
			} , function() {
			$("#pageflip img").stop() 
				.animate({
					width: '50px', 
					height: '52px'
				}, 220);
			$(".msg_block").stop() 
				.animate({
					width: '50px', 
					height: '50px'
				}, 200);
		});
		
	});
}

function onw(href) {
var newWindow = window.open(href, '_blank');
newWindow.focus();
return false;
}
