function showCurtain() {
	if($.browser.msie && parseInt($.browser.version) < 7) return false;
	$('body').css({'height': '200%'});
	var bWidth = $('body').width();
	$('body').css({'width': bWidth+'px'});
	document.body.scrollTop = 0;
	$('html').css({'overflow': 'hidden', 'height': '100%'});
	$('body').prepend('<div class="curtain" style=""><div class="top"><img src="/images/logo.png" alt="logo"/></div><div class="bot"><img src="/images/logo.png" alt="logo"/></div></div>');
	var height = $(window).height();
	var width = $('html').width();	
	
	$('.curtain div').css({
		'width': width,
		'height': height/2,
		'background-color': '#4b594a',
		'position': 'absolute',
		'z-index': 10000,
		'top': "0px"
	}).eq(1).css({'top': height/2+'px'});
	$('.curtain div img').css({'left': (width/2-108.5)+"px"});
	$(document).ready(function(){
		setTimeout(function(){
			$('.curtain div.top').animate({'top': "-"+height/2+"px"},1000,'easeInOutCirc');
			$('.curtain div.bot').animate({'top': height+"px"},1000,'easeInOutCirc',function(){$('.curtain').remove();$('body').css({'height': ''});$('html').css({'overflow': '', 'height': ''});$('body').css({'width':''});});			
		},1000)
		
	});
}
