$(document).ready(function(){
    $("a.eat").hover(function(){
        $(this).animate({'color':'#b4d333'},'fast');
    }, function(){
        $(this).animate({'color':'#808080'},'fast');
    });
    $("a.plot").hover(function(){
        $(this).stop().animate({'color':'#6d5220'},'fast');
    }, function(){
        $(this).stop().animate({'color':'#808080'},'fast');
    });
    $("a.wear").hover(function(){
        $(this).stop().animate({'color':'#f5a11c'},'fast');
    }, function(){
        $(this).stop().animate({'color':'#808080'},'fast');
    });
    $(".eat-current").animate({'color':'#b4d333'},'fast');
    $(".plot-current").animate({'color':'#6d5220'},'fast');
    $(".wear-current").animate({'color':'#f5a11c'},'fast');
});
