	function me2day()
	{
		$("#me2day_Box").show("slow");
		$.ajax({
			url: '/common/me2dayAjax.asp',
			type: 'post',
			data : "",
			dataType: 'html',
			timeout: 5000,
			beforeSend : function() {
				$("#me2Day_DIV").css('height','60px').css('padding-top','60px').css('text-align','center').html("<img src='/images/ajax-loader.gif' />");
			},
			error: function(xhr, ajaxOptions, thrownError){
				alert(xhr.status);
	//			alert(thrownError);
				return;
			},
			success: function(html){
				$("#me2Day_DIV").css('height','auto').css('padding-top','0px').html(html);
			}
		});
	}
