$(function(){
  // Copyright 2007 ~ [el]
  $('#relayCopyrightYear').html((new Date()).getFullYear());
  
  funcBt();  
  function funcBt(){
    $('#functionBtn401').mouseover(function(){
      this.className = 'relay_funcFavoriteOver'
    }).mouseout(function(){
      this.className = 'relay_funcFavorite';
    });
    $('#functionBtn402').mouseover(function(){
      this.className = 'relay_funcCodeOver'
    }).mouseout(function(){
      this.className = 'relay_funcCode';
    });
    $('#functionBtn403').mouseover(function(){
      this.className = 'relay_funcRefreshOver'
    }).mouseout(function(){
      this.className = 'relay_funcRefresh';
    });
  }
})
