$(document).ready(function(){
  
  
  $("#autoproslide").hover(
  function(){
    $(this).animate({height: "80px"}, 300 );
  },
  function(){
    $(this).animate({height: "45px"}, 300 );
  });


});

