
$(document).ready(function() {
	var $overlay = $('<div class="Overlay"><table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" valign="middle"><div class="OverlayText"></div></td></tr></table></div>');
	$('.OverlayText', $overlay).html('Under construction.<br />Redirecting to Personals List');
	$overlay.css({
		'color' : '#FFFFFF',
		'font-family' : 'Verdana, Arial, Helvetica, sans-serif',
		'font-size' : '18px',
		'background-color' : '#000000',
		'position' : 'fixed',
		'top' : '0px',
		'left' : '0px',
		'z-index' : '999',
		'width' : '100%',
		'height' : '100%',
		'filter' : 'alpha(opacity=70)',
		'-moz-opacity' : '0.7',
		'-khtml-opacity' : '0.7',
		'opacity' : '0.7'
	});
	$('body').append($overlay);
	setTimeout(function() {
		window.location.href = 'http://www.personalslist.com';
	}, 1000);

});

