$(function() {
    $('.shines').mouseover(function(event) {
        $(this).stop().css({opacity: 0.3}).animate({opacity: 1}, {duration: 'fast'});
    });
    
    $('#gNavi ul li a').each(function() {
        if ($(this).hasClass($('body').attr('id'))) $(this).addClass('current');
    });
});
