
// HoverMenu Version 0.10   (2002.04.06)
// Copyright (C) 2002  Jason Gibbs
// Obtain the latest version from http://telematx.arsware.org/
// 
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.






// #### CONFIG #############################
HoverMenu = new Object();	//Object w/ config option, browser info, etc

// TextColorOver can be either a string or an array
HoverMenu.TextColor = "#ff8000";
HoverMenu.TextColorOver = "#000000";
//HoverMenu.TextColorOver = Array("#000099","#000099","#FFFFFF","#FFFFFF");

// BGColorOver can be either a string or an array
HoverMenu.BGColor = "#000000";
HoverMenu.BGColorOver = "#ff8000";
//HoverMenu.BGColorOver = Array("#99CCFF","#FFEE66","#6FC262","#CC0000");

HoverMenu.BorderWidth = 1;	//set to null for no border
HoverMenu.BorderColor = "#000000";
HoverMenu.BorderColorOver = "#000000";
// #########################################



if (document.getElementById && document.childNodes) {
	// if the browser supports the "standard" DOM, then load the main script.
	document.write("<scr" + "ipt language='javascript1.2' src='hovermenu.js' type='text/javascript'><\/scr" + "ipt>");
}


