$(document).ready( function(){

$('#wrapper').hide().fadeIn(750, "easeOutQuad");

$('nav a').removeClass('hover');

$('nav a').hover( function(){
$(this).stop(true, true).css({'color':'#130F0D'}).animate({'color':'#812609'}, 500, "easeOutQuad");
}, function(){
$(this).stop(true, true).animate({'color':'#130F0D'}, 500, "easeOutQuad");						   
});

$('#upper-menu a, .content-right a').removeClass('hover');
$('#upper-menu a, .content-right a').hover( function(){
$(this).stop(true, true).css({'color':'#B5A280'}).animate({'color':'#812609'}, 500, "easeOutQuad");
}, function(){
$(this).stop(true, true).animate({'color':'#B5A280'}, 500, "easeOutQuad");						   
});



});
