$(document).ready( function() { //send hover $(".send").hover( function() { $(this).animate({'background-color': "red"}, 200); }, function() { $(this).animate({'background-color': "#adadad"}, 200); } ); //Social Icons $(".icon_social_big").hover( function() { $(this).animate({'color': "red"}, 200); }, function() { $(this).animate({'color': "#666666"}, 200); } ); } );