$(document).ready(function() {
	
$(".fadeMe").hover(function(){
 $(this).animate({ color: "#fafafa" }, 200);
},function() {
    $(this).animate({ color: "#5f4d29" }, 250);
});	
	
	
});
