function alert(msg){
	$jq('#alert').jqmShow().find('div.jqmAlertContent').html(msg);
	return false;
}
jQuery(document).ready(function(){
	$jq('#alert').jqm({overlay:80, modal:true, trigger:false});
	
	if($jq.browser.msie){
		$jq('body').height('auto');
		$jq('body').css({'background-repeat':'repeat-x'});
	}else{
		$jq('body').fadeTo(1,0);
		$jq('body').height('auto');
		$jq('body').fadeTo(2500, 1, function(){
			$jq('body').css({'background-repeat':'repeat-x'});
		});
	}
});