$(document).ready(function() {
	
	// header slide show
	if($().cycle) {
			$('#slideshow').cycle({
				fx: 'fade',
				speed: 1500,
				timeout: 8000,
				pager: '#slideshow_pager',
				pause: true,
				cleartype: true
			});
		}
	
	//figures the height for accordion wrapper to prevent the 'bounce' on transitions
	//$('#acc_wrapper').css('height', $('#acc_wrapper').height() + "px");
	
	//removes dividers from the last element of the nav
	$('#nav ul.nav1 li:last-child').css('background', 'none');
	
	$('#nav ul li ul li:last-child a').css('border-bottom', 'none');
	
	
	//$('#subnav ul li ul li:last-child a').css('border-bottom', 'none');
		
		
	//removes the subnav if it isn't present
	if ($("#subnav ul li.on").children("ul").length == 0) {
		$("#subnav").remove();
	}
	
	
	//changes the page width on pages w/o a subnav area
	if ($("#sub_content").children().size() == 0) {					
		$("#main_content").css({
			"width": "auto",
			"float": "none"
		});
	}
});

