 // Background color animation 
        $(document).ready(function(){
                $(".button").hover(function() {
                $(this).stop().animate({ backgroundColor: "#3d3e3e" }, 500);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#FFF" }, 200);
        });
		
		 $(".button-contact").hover(function() {
                $(this).stop().animate({ backgroundColor: "#3d3e3e" }, 500);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#FFF" }, 200);
        });
	
                $(".button-float").hover(function() {
                $(this).stop().animate({ backgroundColor: "#1E1F1F" }, 500);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#7b8c91" }, 200);
        });
		
  });
