/*
function openNotice(){
	var documentHeight = jQuery(document).height();
	var documentWidth = jQuery(document).width();
	
	var windowHeight = jQuery(window).height();
	var windowWidth = jQuery(window).width();
	
	var noticeHeight = jQuery("#notice-content").height();
	var noticeWidth = jQuery("#notice-content").width();
	
	jQuery("#notice").css('height', documentHeight + "px").show();
	jQuery("#notice-background").css('height', documentHeight + "px");
	jQuery("#notice-background").fadeTo('slow', .7);
	jQuery("#notice-content").css('top', ((windowHeight / 2) - (noticeHeight / 2)) + "px");
	jQuery("#notice-content").css('left', ((windowWidth / 2) - (noticeWidth / 2)) + "px"); 
	jQuery("#notice-content").fadeIn('slow');
}

function closeNotice(){
	jQuery("#notice-content").fadeOut('slow');
	jQuery("#notice-background").fadeOut('slow');
	jQuery("#notice").hide();
}

jQuery(document).ready(function(){
	
	jQuery("#notice-background").click(function(){
		closeNotice();
	});
	
	openNotice();
});
*/
