$(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: 2500,
				timeout: 8000
			});
		}
	
		if ($('#home_slideshow').length != 0) {
			$('#home_slideshow').cycle({
				fx: 'fade',
				speed: 500,
				timeout: 8000,
				cleartype: true,
				next: '.next',
				prev:	'.prev'	
			});
		}
	}
	
	$('#nav ul.nav1 li:last-child a').css('background-image', 'none');

	$('#nav ul li ul li:last-child a').css('border-bottom', 'none');
		
	if ($("#subnav ul li.on").children("ul").length == 0) {
		$("#subnav").remove();
	}
	
	$('#footer_nav li:last-child a').css({
		'border': 'none',
		'padding-right': '0'
	});
});


