$(document).ready(function() {

	$.get(base_dir + 'geo.php', {}, function(data) {
		if(data == "1") {
			ap = $('<div id="sa_background"><a href="#" onclick="return false;" id="sa_close"><img src="' + base_dir + 'splash_announcement.png" /></a></div>');
			ap.css( { height: $('#grunge').height() + "px" } );
			$('#sa_close', ap).click(function() { $('#sa_background').hide(); })
			$('body').prepend(ap);
			$('#sa_close').css({ top: ((ap.height() - 606) / 2) + "px" });
		}
	});

});
