/********************************************************
Javascript code for css dropdown menus 
this code is actually just the fix to compensate for the fact that
IE does not implement the CSS :hover pseudo-class outside of links
This is taken from http://www.alistapart.com/articles/dropdowns
*********************************************************/
startList = function() {
	var lis = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
