//visit_web hover $(document).ready(function(){ $(".visit_web").delay(2000).animate({'background-color': "white"}, 500).animate({'background-color': "#666666"}, 500); $(".visit_web").hover( function() { $(this).animate({'background-color': "white"}, 200); }, function() { $(this).animate({'background-color': "#666666"}, 200); } ); $(".zoom").delay(2000).animate({'color': "#ffcc00"}, 500).animate({'color': "#666666"}, 500); $(".zoom").hover( function() { $(this).animate({'color': "#ffcc00"}, 200); }, function() { $(this).animate({'color': "#666666"}, 200); } ); });