function bkfn()
{
	$(document).ready(function(){
		$("#shade").css({"width":$(window).width(), "height": $(document).height()})
		$("table:eq(0)").css({"opacity":1});
	});
	$("body").ready(function(){
			document.getElementById('wrapper').style.display = 'block';
			$('#shade').fadeOut(3000);
			$('#curtain').fadeIn(3000);
	});
}
