$(document).ready(function() {
	if($().cycle) {
		if ($('#flv_container').length == 0 && $('#header_slideshow').length != 0) { // This stops slideshow from cycling for flash video pages, otherwise playback might stutter during cycling.
			$('#header_slideshow').cycle({
				fx: 'fade',
				speed: 2000,
				timeout: 4000
				
			});
		};
	
		if ($('#home_slideshow').length != 0) {
			$('#home_slideshow').cycle({
				fx: 'fade',
				speed: 800,
				timeout:8000,
				slideExpr: '.home_slide',
				next: '#next',
				prev: '#prev'
			});
		}
	}
});

