// Mobile Fahrzeugsuche

jQuery.noConflict();


jQuery(document).ready(function() {
  jQuery('#mobile').hover(function() {
    jQuery(this).stop().animate({ height: '240px' }, "slow");
  }, function() {
    jQuery(this).stop().animate({ height: '30px' }, "slow");
  });
});
