$(document).ready(function() {
if($().cycle) {
		$('#header_slideshow').cycle({
			fx: 'fade',
			speed: 2500,
			timeout: 5000
		});
	
		$('#home_slideshow').cycle({
			fx: 'fade',
			speed: 500,
			timeout: 10000,
			cleartype:  1, // enable cleartype corrections 
			next: '#next',
			prev: '#prev'
		});
	
		$('#news_slideshow').cycle({
	    	fx: 'scrollDown',
	    	speed: 3000,
	    	timeout: 10000,
			cleartype:  1 // enable cleartype corrections 
	    });
	}
});

