$(document).ready(function(){
   $('#fp-slider').orbit({
      animation:'horizontal-slide',
      captions:false,
      advanceSpeed:5000,
      timer:true
   });
   $('#fp-slider div.timer').remove();
   $("a.department").click(function(){
      $("ul.popular-courses:visible").slideUp(250);
      var _self = $(this);
      setTimeout(function(){
         _self.next().slideDown(250);
      },250);

      return false;
   });

});

