/* * Changes the colors for main menu items */ $(document).ready(function() { $(".what-we-do-link, .our-clients-link, .who-we-are-link, .contact-us-link").hover(function() { $(this).animate({ backgroundColor: "#c40079" }, 200); },function() { $(this).animate({ backgroundColor: "#ffffff" }, 200);} ); });