// Mobile Fahrzeugsuche

$(document).ready(function() {
  if( $('#mobile').length > 0 ) {
  
  $('#mobile').hover(function() {
    $(this).stop().animate({ height: '240px' }, "slow");
  }, function() {
    $(this).stop().animate({ height: '30px' }, "slow");
  });
  
  }
});
