	if (window.external && !window.opera) {
		var appVersion = navigator.appVersion
		if (appVersion.indexOf('MSIE ') != -1) {
			/* the new (packed) version of whatever:Hover doesn't work on IE5.x ... */
			document.write('<style type="text\/css">'+
			  '* html body {behavior:url("whateverHover.htc");}'+
			  '<\/style>')
		}

		if (appVersion.indexOf('MSIE 6.0') != -1) {
			document.write('<style type="text\/css">'+
			  '* html div#nav li a {display:inline-block;}'+
			  '* html div#nav li li a {display:block;}'+
			  '<\/style>')
		}

		/* _DDown.js doesn't work on IE5.x
		   Doesn't throw errors on IE5.5
		   But does on IE5.01-
		 */
		if (appVersion.indexOf('MSIE 5.5') != -1) {
			document.write('<style type="text\/css">'+
			  '* html div#nav li li {margin-left:-16px;}'+
			  '<\/style>')
		}

		if (appVersion.indexOf('MSIE 5.0') != -1) {
			document.write('<style type="text\/css">'+
			  '* html div#nav li li {margin-bottom:-4px;}'+
			  '* html div#nav li li {margin-left:-16px;}'+
			  '* html div#nav li a {float:left;}'+
			  '* html div#nav li li a {border-bottom:0; float:None;}'+
			  '<\/style>')
		}
	}

