jQuery(function () {
  // Slide Up Tours Nabigation
  jQuery('#navigation a').hover(function () {
    jQuery(this).animate({ height: '148px' }, 150);
  },
  function () {
    jQuery(this).animate({ height: '22px' }, 150);
  });

});
