$(document).ready(function() {
jQuery.easing.def = 'easeOutCirc';

$("#footer").hover(function(){
  
  $("#footer").animate( {
  	height: 80
  }, "swing"); 
  },function(){
	
    $("#footer").animate( {
  	height: 15
  }, "swing"); 
 
  });
	  
});



