


//Hover-up Menu Bar: By Dynamicdrive.com
//Credit must stay intact for use
//Visit http://www.dynamicdrive.com for this script and more

//CSS stylesheet for menu bar
var cssdefinition='<style>\n.menuitems{\nborder:2.5px solid #C1BBA9;\n}\n\na.menuitems2{\ntext-decoration:none;\ncolor:#404040;\nfont-size:10px;\nfont-family: Verdana, Geneva, Arial, Helvetica, sans-serif;\n}\n\na.menuitems2:hover{\ntext-decoration:none;\ncolor:#e7d7b5;\n}\n<\/style>'

//No need to edit beyond here
if (document.all||document.getElementById)
document.write(cssdefinition)

function over_effect(e,state, bgcolor){
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
}
}
}
}

