﻿// JavaScript Document
function MouseOut(text){
  text.style.backgroundColor="#6699CC";
  text.style.borderWidth=0; 
  text.style.textDecoration="none";
  text.style.color="white";
}
function MouseOver(text){
  text.style.backgroundColor="#6699CC";
  text.style.borderWidth=0; 
  text.style.textDecoration="underline";
  text.style.color="white";
}
function MouseDown(text){
  text.style.backgroundColor="#6699CC";
  text.style.borderWidth=0;
}
function MouseUp(text){
  text.style.backgroundColor="#6699CC";
  text.style.borderWidth=0; 
}

function menuOut(text){
  text.style.backgroundColor="#004a89";
  text.style.borderWidth=1; 
  text.style.textDecoration="none";
  text.style.color="white";
}
function menuOver(text){
  text.style.backgroundColor="6699CC";
  text.style.borderWidth=1; 
  text.style.textDecoration="underline";
  text.style.color="white";
  text.style.cursor="hand";
}
function menuDown(text){
  text.style.backgroundColor="#6699CC";
  text.style.borderWidth=0;
}
function menuUp(text){
  text.style.backgroundColor="#6699CC";
  text.style.borderWidth=0; 
}