$(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 .slideshow').cycle({
				fx: 'fade',
				speed: 1800,
				timeout: 6000
			});
		};
	
		if ($('#home_slideshow').length != 0) {
			$('#home_slideshow').cycle({
				fx: 'fade',
				speed: 500,
				timeout: 8000,
				next: '#next',
				prev: '#prev'
			});
		}
	}

	$('#sponsor_col').css('min-height' , $('.col_right').height() + 'px');
	
	$('#footer_nav li:last-child').css({
		'border': 'none',
		'padding-right': '0'
	});
	
	$('#content').css('min-height', $('#nav_area').height() -16 + 'px');

});

