﻿/* Varibales */
var agt = navigator.userAgent.toLowerCase();
var is_major = parseInt(navigator.appVersion);
var is_minor = parseFloat(navigator.appVersion);
var is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
var is_ie6    = (is_ie && (is_major == 4) && (agt.indexOf("msie 6.")!=-1) );
var is_gecko = (agt.indexOf('gecko') != -1);
var is_opera = (agt.indexOf("opera") != -1);

eHover = function() {     
    var eME = document.getElementById("eMenu").getElementsByTagName("li");     
    for (var i=0; i<eME.length; i++) {         
        eME[i].onmouseover=function() {this.className+=" over";}         
        eME[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" over\\b"), "");}     
    } 
} 

if (window.attachEvent) window.attachEvent("onload", eHover);


function ow(url){window.open('http://' + url);}