(function($) {
  $(document).ready(function() {

  // initiate the Media scroller
  mediaScroller();

});

})(jQuery);


/*------- Create a media and videos scroller ----*/
function mediaScroller() {

  jQuery('.featureItem .first-and-second-carousel').jcarousel({
      scroll: 1
  });

  jQuery('.featureVideo .first-and-second-carousel').jcarousel({
      scroll: 3
  });

}; 
// end of mediaScroller()

