$(document).ready(function() {
	$('#feature .items').cycle({ 
        fx: 'fade', 
        speed: 800,
        timeout: 6000,
        easing: 'easeOutSine',
        next:'#feature .next', 
        prev:'#feature .previous'
	});
	
	$('.news .items').cycle({ 
		fx: 'fade', 
        speed: 800,
        timeout: 6000,
		easing: 'easeOutSine',
		pager: '.controls .pager',
		next:'.news .next', 
		prev:'.news .previous'
	});
});
