/*
   Make the marquee run
  */
(function($) {
	$(function() { //on DOM ready
		$("#scroller").simplyScroll({
			autoMode: 'loop',
			speed: 1
		});
	});
})(jQuery);

