//<--
//Hover-up Menu Bar: By Dynamicdrive.com
//Credit must stay intact for use
//Visit http://www.dynamicdrive.com for this script and more
//Modified by Mark E. Gunnison
//CSS stylesheet for menu bar
//Customize background color (#FFF2BF) and link color (black):


var cssdefinition='<style>\n.menuitems{\nborder:2.5px solid #00CC00;\n}\n\n.menuitems a{\ntext-decoration:none;\ncolor:black;\nfont:normal;}\n.menuitems a:hover {text-decoration:none;color:black;}<\/style>'

//No need to edit beyond here
if (document.all||document.getElementById)
document.write(cssdefinition)

function over_effect(e,state, bgcolor)
{
var bgcolornornal = '#00CC00';
var bgcolorselect = '#009999'; 
 
 if (bgcolor == 1)
 		bgcolor = bgcolorselect;
 else
    bgcolor = bgcolornornal;

 if (document.all)
 		source4=event.srcElement;
 else if (document.getElementById)
 		source4=e.target;
 if (source4.className=="menuitems")
 {
 		source4.style.borderStyle=state;
		source4.style.backgroundColor=bgcolor;
 }
 else
 {
 		 while(source4.tagName!="DIV")
		 {
		  	source4=document.getElementById? source4.parentNode : source4.parentElement;
			if (source4.className=="menuitems")
			{
			   source4.style.borderStyle=state;
			   source4.style.backgroundColor=bgcolor;
			}
		 }
 }
}
//-->