//Start of dropdown menus section
var layerRef="null";
var styleSwitch="null";
var visibleVar="null";
if (navigator.appName == "Netscape"){
      layerRef="document.layers";
      styleSwitch="";
      visibleVar="show";
}
else{
      layerRef="document.all";
      styleSwitch=".style";
      visibleVar="visible";
}
function showHideLayerSwitch(layerName){
    if (eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility == visibleVar'))
      hideLayer(layerName);
    else
      showLayer(layerName);
}
function showLayer(layerName){
    eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');
}
function hideLayer(layerName){
    eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');
}
//Finish of dropdown menus section

function mouseOver(src,clrOver) { 
 if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand'; src.bgColor = clrOver; 
 }
}
function mouseOut(src,clrIn) {
 if (!src.contains(event.toElement)) { 
  src.style.cursor = 'default'; src.bgColor = clrIn; 
 }
} 
function mouseClick(src) {
 if(event.srcElement.tagName=='td'){
  src.children.tags('A')[0].click();
 }
}

