/**
* ■ 画像のロールオーバー
*
*/
$(function(){
              $("img.rollover").mouseover(function(){
                            $(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_ho$2"));
              }).mouseout(function(){
                            $(this).attr("src",$(this).attr("src").replace(/^(.+)_ho(\.[a-z]+)$/, "$1$2"));
              }).each(function(){
                            $("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_ho$2"));
              });
});

/**
* ■ ページトップへ
*
*/
$(function () {
    if (! $.browser.safari) {
        $('.link_to_top').click(function () {
            $(this).blur();

            $('html,body').animate({ scrollTop: 0 }, 'slow');

            return false;
        });
    }
});

