﻿// JavaScript Document
function MouseOut(text){
  //text.style.backgroundColor="#718ECE";
  text.style.borderWidth=0; 
  text.style.textDecoration="none";
  text.style.color="white";
}
function MouseOver(text){
  //text.style.backgroundColor="#718ECE";
  text.style.borderWidth=0; 
  text.style.textDecoration="underline";
  text.style.color="white";
}
function MouseDown(text){
  //text.style.backgroundColor="#7E90F7";
  text.style.borderWidth=0;
}
function MouseUp(text){
  //text.style.backgroundColor="#7E90F7";
  text.style.borderWidth=0; 
}

function menuOut(text){
  //text.style.backgroundColor="#718ECE";
  text.style.borderWidth=1; 
  text.style.textDecoration="none";
  text.style.color="white";
}
function menuOver(text){
  //text.style.backgroundColor="2F2FAE";
  text.style.borderWidth=1; 
  text.style.textDecoration="underline";
  text.style.color="white";
    text.style.cursor="hand";
}
function menuDown(text){
  //text.style.backgroundColor="#7E90F7";
  text.style.borderWidth=0;
}
function menuUp(text){
  //text.style.backgroundColor="#7E90F7";
  text.style.borderWidth=0; 
}


function SubmenuOut(text){
  //text.style.backgroundColor="#6084D9";
  text.style.borderWidth=1; 
  text.style.textDecoration="none";
  text.style.color="FFFF66";
}
function SubmenuOver(text){
  //text.style.backgroundColor="00CCFF";
  text.style.borderWidth=1; 
  text.style.color="FFFF66";
    text.style.cursor="hand";
}
function SubmenuDown(text){
  //text.style.backgroundColor="#7E90F7";
  text.style.borderWidth=0;
}
function SubmenuUp(text){
  //text.style.backgroundColor="#7E90F7";
  text.style.borderWidth=0; 
}
