if((navigator.appVersion.indexOf('MSIE')>-1 && navigator.appVersion.indexOf('Macintosh')>-1) || (navigator.appVersion.indexOf('Konq')>-1)){
	// MSIE on the macintosh... why god, why
}else{
	// hide the list while DOM work is being done on it.
	if(typeof(document.getElementById)!='undefined') 
			document.writeln('<style>#listmenu0{display:none;}</style>');
			
	// fix for IE 7
	if(navigator.appVersion.indexOf('IE 7')>-1)
		document.writeln('<style>html, body {height : 100%;}</style>');
			
}
