page = new Array("index.php","presens.php","events.php","access.php"); function mnuOvr( id ) { document.getElementById(id).style.backgroundColor = "wheat"; document.body.style.cursor="pointer"; } function mnuOut( id ) { document.getElementById(id).style.backgroundColor = ""; document.body.style.cursor="default"; } function mnuClk( id ) { window.location.href = page[id.substr(6,1)]; } window.onload = function() { document.getElementById("IDBODY").oncontextmenu = function(){return false;}; for ( i=0; i< 4; i++ ) { e = document.getElementById("IDMENU" + i); if ( i != 0 ) { e.onmouseover = function(){mnuOvr(this.id);}; e.onmouseout = function(){mnuOut(this.id);}; e.onclick = function(){mnuClk(this.id);}; } else e.style.backgroundColor = "sandybrown"; } onPageLoad(); }