// JavaScript Document

function setHover(className,hoverClassName) {
    var hoverDivs = document.getElementsByClassName(className);
    hoverDivs = $A(hoverDivs);
    hoverDivs.each(
        function(div){
			div.onclick = function() {
				if (this.id) {
					location.href = this.id;
				}
			}
        }
    );
}

function init (){
    setHover('mnu','menu');
}
Event.observe(window, 'load', init, false);