$(document).ready(function() {
	if($().cycle) {
		$('#slideshow').cycle({
			fx: 'fade',
			speed: 1500,
			timeout: 8000
		});
	}
	// makes column with background same height as the tallest column
	$('#upcoming_events.col').css('minHeight',$('#main_bottom').height() -37 +'px');
	
	//removes dividers and padding from the last element of the nav
	$('#nav ul.nav1>li:last-child').css({
		'padding-right': '0',
		'background-image': 'none'
	});
	//removes the subnav if it isn't present
	if ($("#subnav ul li.on").children("ul").length == 0) {
		$("#subnav_area").remove();
	}
	
	//changes the page width on pages w/o a subnav area
	if ($("#subnav_area").children().size() == 0) {					
		$("#main_content").css({
			"width": "auto",
			"padding-left": "20px",
			"padding-right": "20px",
			"float": "none"
		});
	}

});

