$(document).ready(function() {
	if($().cycle){			
		if ($('#slideshow').length != 0) {
			$('#slideshow').cycle({
				fx: 'fade',
				speed: 500,
				timeout: 8000,
				cleartype: true,
				pager: '#slideshow_pager'
			});
		}
	}
	
	
	//$(this).parent('li').removeClass('on');
	
	// fundraiser accordion
	var lastBlock = $("#a1");
	var maxWidth = 378;
	var minWidth = 143;	
	
	$(lastBlock).parent('li').addClass('on');	
	
	$("div.trigger").hover(	
		function(){			
			$(lastBlock).parent('li').removeClass('on');
			$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
			
			$(this).parent('li').addClass('on');
			$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
			currentBlock = this;				
			lastBlock = this;						
		}
	);
	
	
	//removes bottom-border from the last element of the drop down
	$('#nav ul 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_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"
	    });
	}
	


});

