

function menuActive(id) {
	var link = document.getElementById(id);
	link.setAttribute("class", id + "-active"); 
        link.setAttribute("className", id + "-active"); 
}


