﻿// 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(img_new/nenmenu.gif)" ;
  text.style.borderWidth=0; 
  text.style.textDecoration="none";
  text.style.color="red";
  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; 
}
