// JavaScript Document

 // Background color animation 
        $(document).ready(function(){
                $(".first a").hover(function() {
                $(this).stop().animate({ backgroundColor: "#00aadd" }, 600);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#303030" }, 400);
        });
 // font color animation 
                $(".second a").stop().hover(function() {
                $(this).stop().animate({ color: "#000000" }, 400);
        },function() {
    $(this).animate({ color: "#FFFFFF" }, 500);
        });

  });
