$(function(){
  // cache for preload
  var preloadCache = [];
  
  // rollover
  $(".rollover").live("mouseover", function(){
    $(this).attr("src", $(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
  }).live("mouseout", function(){
    $(this).attr("src", $(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
  }).each(function(){
    preloadCache.push($("<img />").attr("src", $(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2")));
  });
  
  $(".yearSelect").change(function() {
    /*location.href=this.value;*/
  });
  
  function get_root_path()
  {
    if (document.URL.indexOf("localhost") != -1) {
      return '/client/wasedazemi/';
    }
    return '/';
  }
});

