/* Javscript Document  */

//var WEBKIT = Browser.Engine.webkit;  
//var GECKO = Browser.Engine.gecko;  
//var OPERA = Browser.Engine.presto;  
//var IE = Browser.Engine.trident;
var IE6 = (navigator.userAgent.toLowerCase().indexOf('msie 6') != -1) && (navigator.userAgent.toLowerCase().indexOf('msie 7') == -1);  
 
// If ie6 start suckerfish for dropdown menus
// Full support for IE6 is passed
if(IE6) { 
alert ("Käyttämäsi versio Internet Exprorista ei ole täysin tuettu tämän sivuston toiminnallisuuksissa.\n\nKäytäthän uudempaa versiota Internet Explorerista (7,8 tai 9)\ntai muita selaimia, esim. Mozilla Firefox, Opera, Safari tai Chrome.");
    startList = function() {
    if (document.all&&document.getElementById) {
    navRoot = document.getElementById("nav");
    for (i=0; i<navRoot.childNodes.length; i++) {
    node = navRoot.childNodes[i];
    if (node.nodeName=="LI") {
    node.onmouseover=function() {
    this.className+=" over";
     }
    node.onmouseout=function() {
    this.className=this.className.replace(" over", "");
        }
       } 
      } 
     }
    }
    window.onload=startList;
}
