$(function() {
 function addMega(){
  $(this).addClass('hovering');
 }
 function removeMega(){
  $(this).removeClass('hovering');
 }
 var megaConfig = {
  interval: 20,
  sensitivity: 4,
  over: addMega,
  timeout: 20,
  out: removeMega
 };
 $('li.mega').hoverIntent(megaConfig);
 $('#tabs').tabs();
 $('#featured').orbit({
  'bullets': true,
  'timer' : false,
  'animation' : 'horizontal-slide'
 });
});

