<!--
$(function(){
$('div.sub_box').corner("tl br 10px");
$('div#sports_menu').corner("10px");
$('ul.menu_box a').corner("5px");
$('div#sports_category_menu > div.sport_category').next().hide();
$('#to_page_top a').click(function(){$('#header').ScrollTo(500, 'easeout');return false;});
});

$(document).ready(function(){
  $('div#sports_category_menu > div.sport_category').css('cursor', 'pointer').click(function(){
    $(this).next().slideToggle('normal');
  });
});

function initRollOverImages() {
    var image_cache = new Object();
    $("#add_member_button").not("[@src*='_on.']").each(function(i) {
        var imgsrc = this.src;  
        var dot = this.src.lastIndexOf('.');  
        var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
        image_cache[this.src] = new Image();
        image_cache[this.src].src = imgsrc_on;
        $(this).hover(
            function() { this.src = imgsrc_on; },
            function() { this.src = imgsrc; }
        );
    });
}
$(document).ready(initRollOverImages);

$(document).ready(function(){
$("ul#nav img").hover(
  function(){$(this).fadeTo(300,0.6);},
  function(){$(this).fadeTo(300,1.0);}
);

$(".contents_box img").hover(
  function(){$(this).fadeTo(300,0.6);},
  function(){$(this).fadeTo(300,1.0);}
);

});
//-->