$(function(){
    $("img.gnavi-fade").imgFade({startAlpha : 0});
    $('dl.list a[href$="pdf"]').addClass('pdf').attr('target', '_blank');
    
    $('.pageTop').bind('click', function(event){
        $('html,body').stop().animate({scrollTop : 0}, 800, 'easeInOutCubic');
        event.preventDefault();
    });
    
    // Tooltip
    $('.tooltip a[title]').qtip({
        position : {
            my : 'bottom center',
            at : 'top center',
            adjust : {
                mouse : true,
                y : -7
            },
            target : 'mouse'
        }
    });
});
