// Internet Explorer does not support the "hover" property in CSS.
// Because of this, we need to do a javascript hack that will only be invoked
// by Internet Explorer. The hack will change the "class name" of a critical 
// element which will show/hide it based on mouse flyover events.

function ieHoverHackOnMouseOver( element ) {
	// The "if" evaluates to true only if the browser is Internet Explorer
	if ( document.all && document.getElementById ) {
		element.className += "Over";	
	}
}

function ieHoverHackOnMouseOut( element ) {
	// The "if" evaluates to true only if the browser is Internet Explorer
	if ( document.all && document.getElementById ) {
		element.className = element.className.replace("Over", "");
	}
}