﻿    
    projectlisthover = function() {
    
    
    
        if (document.getElementById("projectlist"))
        {
        
        
        
	        var menuElements = document.getElementById("projectlist").getElementsByTagName("li");
	        for (var i=0; i<menuElements.length; i++) {
	        menuElements[i].onmouseover=function() {
			this.className+=" projectlisthover";    
		        }
		        menuElements[i].onmouseout=function() {
		        this.className=this.className.replace(new RegExp(" projectlisthover\\b"), "");
		        }
	        }
	    }
	    
    }
    
    if (window.attachEvent) window.attachEvent("onload", projectlisthover);
