//**********************************************************
// CONFIG FILE - Initialise the Shadow Box (for popups)
//               and the Scroller for the Logos.
//**********************************************************

// Shadow Box
Shadowbox.init({
  players:['html']
});

// Logo Scroller
(function($) {
  $(function() { 
    $("#scroller").simplyScroll({
      className: 'vert',
      autoMode: 'loop',
      horizontal: false,
      frameRate: 24,
      speed: 1
    });
  });
})(jQuery);

