 // Animation Background
			$(document).ready(function(){
				$(".spam").hover(function() {
                $(this).stop().animate({ backgroundColor: "#5898F3"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#F3F3F3" }, 800);
                });
	
		 }); 

