﻿// JavaScript Document

function menuOut(text){
  text.style.background="none";
  text.style.borderWidth=0; 
  text.style.textDecoration="none";
  text.style.color="#000FFF";
}
function menuOver(text){
  text.style.background="url(images/nenmenu.jpg)" ;
  text.style.borderWidth=0; 
  text.style.textDecoration="none";
  text.style.color="#FFFF66";
  text.style.cursor="hand";
}
function menuDown(text){
  text.style.background="none";
  text.style.borderWidth=0;
}
function menuUp(text){
  text.style.background="none";
  text.style.borderWidth=0; 
}