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


});
