var jshover = function()
{
 var menuDiv = document.getElementById("horizontal-multilevel-menu_02");
 if(menuDiv)
 {
	var sfEls = menuDiv.getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) 
	{
		sfEls[i].onmouseover=function()
		{
		    el = this.getElementsByTagName("ul")[0];
 			if(el && el.vml) for (v in el.vml) {
				if (el.vml.hasOwnProperty(v)) {
					el.vml[v].shape.style.display = 'block';
				}
			}

			this.className+=" jshover";
		}
		sfEls[i].onmouseout=function() 
		{
		    el = this.getElementsByTagName("ul")[0];
 			if(el && el.vml) for (v in el.vml) {
				if (el.vml.hasOwnProperty(v)) {
					el.vml[v].shape.style.display = 'none';
				}
			}
           
			this.className=this.className.replace(new RegExp(" jshover\\b"), "");
		}
	}
 }

 var menuDiv = document.getElementById("horizontal-multilevel-menu_03");
 if(menuDiv)
 {
	var sfEls = menuDiv.getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) 
	{
		sfEls[i].onmouseover=function()
		{
		    el = this.getElementsByTagName("ul")[0];
 			if(el && el.vml) for (v in el.vml) {
				if (el.vml.hasOwnProperty(v)) {
					el.vml[v].shape.style.display = 'block';
				}
			}

			this.className+=" jshover";
		}
		sfEls[i].onmouseout=function() 
		{
		    el = this.getElementsByTagName("ul")[0];
 			if(el && el.vml) for (v in el.vml) {
				if (el.vml.hasOwnProperty(v)) {
					el.vml[v].shape.style.display = 'none';
				}
			}
           
			this.className=this.className.replace(new RegExp(" jshover\\b"), "");
		}
	}
 }
}

if (window.attachEvent) 
	window.attachEvent("onload", jshover);
