$(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: 1500,
				timeout: 8000,
				random: true
			});
		};
	
		if ($('#home_slideshow').length != 0) {
			$('#home_slideshow').cycle({
				fx: 'fade',
				speed: 500,
				timeout: 8000,
				next: '.slide_nav .next',
				prev: '.slide_nav .prev'
			});
		}
	}

	$('#sub_content').css('min-height',$('#main_content').height() - 10 +'px');
	$('#content').css('min-height',$('#container').height() -140 +'px');

});

