/* Featured section of the home page */

$(document).ready(function() {

	/****************************************************************************************
	Setup the basic cycle 
	****************************************************************************************/
	$('div#rotator').cycle({ 			   
		fx:     'scrollHorz', 
		easing: 'easeInCubic',
		speed:  '600', 
		timeout: '10000',
		next:   '#right-rotate', 
    	prev:   '#left-rotate', 
		cleartype: true,
		cleartypeNoBg: true,
		pause:  1
	});
	
	$('div#news-rotator').cycle({
		fx:     'scrollUp', 
		easing: 'easeInCubic',
		speed:  '600', 
		timeout: '10000',
		delay: -4000,
		cleartype: true,
		cleartypeNoBg: true,
		pause:  1								
	});
	
});
