$(document).ready(function(){
$(".boxes").hover(function() {
$(this).stop().animate({ backgroundColor: "#ffcc00"}, 400);
},function() {
$(this).stop().animate({ backgroundColor: "#e7e8e9" }, 400);
});
$(".boxes02").hover(function() {
$(this).stop().animate({ backgroundColor: "#ffcc00"}, 400);
},function() {
$(this).stop().animate({ backgroundColor: "#e7e8e9" }, 400);
});
$(".boxes03").hover(function() {
$(this).stop().animate({ backgroundColor: "#ffcc00"}, 400);
},function() {
$(this).stop().animate({ backgroundColor: "#e7e8e9" }, 400);
});
});
