function init() {
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		document.getElementById("inicio").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
		document.getElementById("inicio").onmouseout = function() { this.className = ""; }		
		
		menu1.onactivate = function() { document.getElementById("clube").className = "hover";};
		menu1.ondeactivate = function() { document.getElementById("clube").className = "";};

		menu2.onactivate = function() { document.getElementById("sobre").className = "hover";};
		menu2.ondeactivate = function() { document.getElementById("sobre").className = "";};

		menu3.onactivate = function() { document.getElementById("noticias").className = "hover";};
		menu3.ondeactivate = function() { document.getElementById("noticias").className = "";};

		menu4.onactivate = function() { document.getElementById("linksR").className = "hover";};
		menu4.ondeactivate = function() { document.getElementById("linksR").className = "";};

		document.getElementById("links").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
		document.getElementById("links").onmouseout = function() { this.className = ""; }
		
		document.getElementById("album").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
		document.getElementById("album").onmouseout = function() { this.className = ""; }
		
		document.getElementById("mapa").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}
		document.getElementById("mapa").onmouseout = function() { this.className = ""; }
	}
}