(function($) { // start anonymous function so we can use jQuery as $
//alert(1);

/* define tasks to perform when document loads */
$(document).ready(function() {
	// setup pagination for news and promos section
	$('.landingPage-module a').paginate({
		//backButton: '#left-module-wrapper .left-arrow',
		//forwardButton: '#left-module-wrapper .right-arrow',
		//currentDisplay: '.landingPage-promotion-module .rotation .current',
		//maxDisplay: '#left-module-wrapper .max',
		activeClass: 'news-active',
		cycleController: '.landingPage-module',
		cycleInterval: cycleInterval,
		objectId : '.landingPage-module a',
		fadeInTime: fadeInTime,
		fadeOutTime: fadeOutTime
	});
	
});


})(jQuery); // end anonymous funciton started on line 1
