/*-------------------------------------------*/
/* IE6のhover用のhoverクラス追加
/*-------------------------------------------*/

$(function(){
    /* notificationBar */
    $('#notifications').slideDown("slow");
    setTimeout(function(){
        $('#notifications').slideUp("slow");
    }, 3500);

    /* IE6のhover用のhoverクラス */
    $("input.search_submit").each(function(){
        $(this).hover(function(){
            $(this).addClass("hover");
        },function(){
            $(this).removeClass("hover");
        });
    });
    $("input.search_top_submit").each(function(){
        $(this).hover(function(){
            $(this).addClass("hover");
        },function(){
            $(this).removeClass("hover");
        });
    });
});


/*-------------------------------------------*/
/* ページの先頭へ戻る
/*-------------------------------------------*/

function backToTop() {
    $(this).blur();
    $('html,body').animate({ scrollTop: 0 }, 'normal');
    return false;
}
