/* author: davebrand@onetel.net.uk */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 08/03/2004 */
if(navigator.appName == "Netscape")window.captureEvents(Event.MOUSEMOVE);

document.onmousemove=track;

var m2 = document.getElementById ("menu2");
var m4 = document.getElementById ("menu4");

function track(e)

{var x = (document.all) ? event.x : e.pagex;
var y = (document.all) ? event.y : e.pagey;

if( x<212 || x >392 || y<0 || y>140)
m2.style.visibility = "hidden";

if( x<604|| x >784|| y<0 || y>80)
m4.style.visibility = "hidden";

}

function reveal (menu)

{if (menu == 2) m2.style.visibility = "visible";
if (menu == 4) m4.style.visibility = "visible";
}
