$(function(){
	//Accordion
	
	//hide all expandable areas
	$(".accordion h4").next().hide();
	
	$(".accordion h4").click(function(){
				
		$(this).next().animate({height:"toggle",opacity:"toggle"}, 200, function(){
			if($(this).is(":visible")){
				$(this).prev("h4").children("span").css({"background-position":"bottom left"});	
			}else{
				$(this).prev("h4").children("span").css({"background-position":"top left"});	
			}
		});	
	});
	
	//navigation accordion
	$(".terNavBtn").next("ul").hide();
	$(".navselected").next("ul").show();
	$("#ctl00_tertiary1_tert1,#ctl00_tertiary1_tert4").click(function(){
		$(this).next("ul").animate({height:"toggle",opacity:"toggle"}, 200, function(){});
		return false;	
	});

///Place code between these comments/////


///Place code between these comments/////
});
