if (navigator.userAgent.toUpperCase().indexOf("MAC") >= 0 && !!document.all) {
	document.write('<link rel="stylesheet" type="text/css" href="/include/macie.css" />');
}
;
var bShow = false;
var timer;
;
function toggleObject (sID) {
	bShow = !bShow;
	if (bShow) {
		showObject(sID);
	} else {
		hideObject(sID);
	}
}
function showObject (sID) {
	bShow = true;
	stopTimeout();
	document.getElementById(sID).style.display = 'block';
}
function hideObject (sID) {
	bShow = false;
	document.getElementById(sID).style.display = 'none';
}
function startTimeout(sID) {
	timer = setTimeout("hideObject('sitemap')", 300);
}
function stopTimeout() {
	clearTimeout(timer);
}