<!--
isIE = (navigator.appName.indexOf('Microsoft') == -1) ? false : true;
function loadCalendar() {
	if (isIE) {
		document.all.top_calendar.onmouseover = function()
		{
		this.className = 'top_right_2';
		}
		document.all.top_calendar.onmouseout = function()
		{
		this.className = 'top_right_1';
		}
	}
}
//-->