function GBI_Menu(){ 
	if(navigator.appVersion.indexOf("MSIE")==-1){return;}
	var i,k,g,lg,r=/\s*prub/,nn='',c,cs='prub',bv='GBImenu';
	for(i=0;i<10;i++) {
		g=document.getElementById(bv+nn);
		if(g) {
			lg=g.getElementsByTagName("LI");
			if(lg) {
				for(k=0;k<lg.length;k++) {
					lg[k].onmouseover=function(){
						c=this.className; 
						cl=(c)?c+' '+cs:cs;
						this.className=cl;
					};
					lg[k].onmouseout=function(){
						c=this.className; 
						this.className=(c)?c.replace(r,''):'';
					};
				}
			}
		}
		nn=i+1;
	}
}

function init() {
	//stub
}

   /* for Mozilla */
   if (document.addEventListener) {
       document.addEventListener("DOMContentLoaded", init, false);
   }

   /* for Interet Explorer */
   /*@cc_on @*/
   /*@if (@_win32)
       document.write("<script defer src=/assets/js/ie_onload.js><"+"/script>");
   /*@end @*/

   /* for other browsers */
   window.onload = GBI_Menu;