$(function(){
    $("a [src *='blank.gif']").hover(function(){
        $(this).attr('src', $(this).attr('oSrc').replace('_off', '_on'));
    }, function(){
        if (!$(this).hasClass('currentPage')) {
            $(this).attr('src', $(this).attr('oSrc').replace('_on', '_off'));
        }
    });
});

$(function(){
    $('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
    }, function(){
    
        if (!$(this).hasClass('currentPage')) {
            if ($(this).parent().parent().hasClass('act')) {
                $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
            }
            else {
                $(this).attr('src', $(this).attr('src').replace('_on', '_off'));
            }
            
        }
    });
});

$(function(){
    $("a.pagelink").click(function(){
        $('html,body').animate({
            scrollTop: $($(this).attr("href")).offset().top
        }, 'slow', 'swing');
        return false;
    });
});

