// JavaScript Document


/*ナビゲーション下線*/
$(function() {

    $("#gnavi li.now a").css("background-image","url('images/material/navi_border.png')");

    var $el, leftPos, newWidth,
        $mainNav = $("#main-navi");

    $mainNav.append("<li id='magic-line'></li>");
    var $magicLine = $("#magic-line");

    $magicLine
        .width($(".now").width())
        .css("left", $(".now a").position().left);

    $("#main-navi li a").mouseover(function() {
        $el = $(this);
        leftPos = $el.position().left;
        newWidth = $el.parent().width();
        $magicLine.stop().animate({
            left: leftPos,
            width: newWidth
        },400);
    });
});


/*ページトップへ*/
$(function(){
     $("#go_top a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});

