function tb_show(TheDate){
	if($("#memosbox").css("display") != "block"){
		$("#memosbox").append("<div class='box_content' onmouseover='clearRemove();' onmouseout='setRemove();'></div><div class='box_close'><a href='javascript:void(0)' onclick='tb_remove()' target='_self'></a></div><div class='clear'></div><div class='memo_date'></div>");
		$(".memo_date").html(TheDate);
		$(".box_content").html("<iframe src='/inc/Calendar/ajaxMemos.asp?TheDate=" + TheDate + "' scrolling='no' width='354' height='377' frameborder='0' marginheight='0' marginwidth='0'></iframe>");
		$("#memosbox").css({display:"block"});
		setRemove();
	}else{
		$(".memo_t").html(TheDate);
		$(".box_content").html("<iframe src='/inc/Calendar/ajaxMemos.asp?TheDate=" + TheDate + "' scrolling='auto' width='354' height='377'' frameborder='0' marginheight='0' marginwidth='0'></iframe>");
	}
}

function tb_remove() {
 	$(".box_close a").unbind("click");
	$("#memosbox").fadeOut(1000);
}

function setRemove() {
	time = setTimeout(function(){
		tb_remove();
	}, 8000);
}

function clearRemove(){
	clearTimeout(time);
}

