﻿// JavaScript Document
function MouseOut(text){
 
  text.style.backgroundColor="#553C35";
  text.style.borderWidth=0; 
  text.style.textDecoration="none";
  text.style.color="#000080";
}
function MouseOver(text){
  text.style.backgroundColor="#553C35C";
  text.style.borderWidth=0; 

  text.style.color="#000080";
}
function MouseDown(text){
  text.style.backgroundColor="#553C35";
  text.style.borderWidth=0;
 
}
function MouseUp(text){
  text.style.backgroundColor="#553C35";
  text.style.borderWidth=0; 

}

function menuOut(text){
  text.style.backgroundColor="#553C35";
  text.style.borderWidth=0; 
  text.style.textDecoration="none";
  text.style.color="#008800";
  
}
function menuOver(text){
  text.style.backgroundColor="#553C35";
  text.style.borderWidth=0; 

  text.style.color="#000080";
 
}
function menuDown(text){
  text.style.backgroundColor="#553C35";
  text.style.borderWidth=0;
  text.style.Width=25
  text.style.Height=25
}
function menuUp(text)
{
  text.style.backgroundColor="#553C35";
  text.style.borderWidth=0; 
  text.style.borderTop=1;
  text.style.Width=25
  text.style.Height=25
}