// JavaScript Document function setLeftNavItemOnMouseOver(divid) { //document.getElementById(divid).style.backgroundImage= "url('template_images/leftnav_mouseover-bkg.gif')"; //document.getElementById(divid).style.width = '213px'; //document.getElementById(divid).style.height = '92px'; document.getElementById(divid).style.border = "1px solid #cccccc"; document.getElementById(divid).style.padding = "3px"; } function resetLeftNavItemOnMouseOver(divid) { /*document.getElementById(divid).style.backgroundImage= "none"; document.getElementById(divid).style.width = ''; document.getElementById(divid).style.height = '';*/ document.getElementById(divid).style.border = "none"; document.getElementById(divid).style.padding = "0px"; }