/*
	Based on solution for MSIE sub-standard CSS support posted at:
	http://www.mywebstuff.com/02_css/css_07.html
*/

var detect = navigator.userAgent.toLowerCase();
var thestring;

function checkIt(string) {
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

startList = function() {
	if (checkIt('msie')) {
		if (document.all && document.getElementById) {
			rootNode = document.getElementById("gsSidebarCol");
			menuNode = document.getElementById("gsSidebar");
			if (rootNode.nodeName=="DIV") {
				rootNode.onmouseover=function() {
					menuNode.style.display="block";
				}
				rootNode.onmouseout=function() {
					menuNode.style.display="none";
				}
			}
		}
	}
}

window.onload=startList;

