jQuery(document).ready(function(){
	// Background color animation 
	jQuery(".first a").hover(function() {
		jQuery(this).stop().animate({ backgroundColor: "#000000",color: "#ffffff" }, 600);
	},function() {
		jQuery(this).stop().animate({ backgroundColor: "#ffffff",color: "#000000" }, 400);
	});
});
