$(document).ready(function() {
 if($().cycle){
		if ($('#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: 1500,
	  timeout: 8000
	});
  };
	if ($('#home_slideshow').length != 0) {
  $('#home_slideshow').cycle({
	fx: 'fade',
	pause: 1,
	speed: 1500,
	timeout: 16000
  });
	}
}
});
