var showAd = false;
$(document).ready(function(){
	if (showAd) {
		var t = setTimeout('showAd()', 10000);
		$('#ad_close').bind('click', function(){
			$('#ad').fadeOut('fast');
		});
	}
});

function showAd()
{
	$('#ad').fadeIn('slow');
	$('#ad').css('top',10);
	$('#ad').css('left',Math.floor(($(document).width()/2)-($('#ad_img').width()/2)));
	$('#ad').height($('#ad_img').height());
	$('#ad').width($('#ad_img').width());
	$('#ad').css('z-index','1000');	
}

