// JavaScript Document<!-- 
// == This code free to use providing this code stays intact in your HTML document == //
// == This material created and produced by Colin Barron email: cbarron@cgocable.net . . www.cgocable.net/~cbarron . . ©copyright 1997, 1998, 1999 == //
// == Modified By: http://www.DesignerWiz.com == //
// == Development Resource & JavaScript Public Archive Center == //
// == NOTICE: Though This Material May Have Been In A Public Depository, Certain Author Copyright Restrictions May Apply 

ns=window.navigator.appName == "Netscape"
ie=window.navigator.appName == "Microsoft Internet Explorer"
function openIt(x) {
if(ns) {
showbox= document.layers[x+1]
showbox.visibility = "show";
showbox.top=44;
var items = 5      ;
for (i=1; i<=items; i++) {
elopen=document.layers[i]
if (i != (x + 1)) { 
elopen.visibility = "hide" }
}
}    
if(ie) {
curEl = event.toElement
curEl.style.background = "eeeeee" //this is rollover background color   
showBox = document.all.box[x];
showBox.style.visibility = "visible";
showBox.style.top = 46;
var items = 5 
for (i=0; i<items; i++) {
elOpen=document.all.box[i]
barEl=document.all.mnubar[i]
if (i != x){ 
elOpen.style.visibility = "hidden" 

}
}
}
}
function closeIt() {
var items = 5 
for (i=0; i<items; i++) {
if(ie){
document.all.box[i].style.visibility = "hidden"
barEl=document.all.mnubar[i]

}
if(ns){ document.layers[i+1].visibility = "hide"}          
}
}

