$(document).ready(function(){
	// ********************* sub nav sliding tertiary links function below vvv ************************
	$('.tertiary > a').click(function(){
		//if it's already the active link, just close the menu up and remove the class
		if($(this).hasClass('active_tertiary')){
			$(this).removeClass('active_tertiary');
			$(this).next().slideUp();
		} else {
		//else, close up any existing ones (that aren't an ancestor) and open this one and add the active class
			
			if($(this).hasClass('child')){
				$(this).addClass('active_tertiary').next().slideDown();
			} else {
				$('.active_tertiary').removeClass('active_tertiary').next().slideUp();
				$(this).addClass('active_tertiary').next().slideDown();
			}
		}
		
		if($('.active_tertiary').length == 0){
			persistPage();
		}
		return false;
	});
	
	
	//********************** photo gallery cycle below vvv *******************
	
	$('#photo_gallery').cycle({
		fx: 		'scrollVert',
		speed: 		1250,
		easing: 	'easeInOutCubic',
		timeout: 	0,
		next: 		'#advance_down',
		prev: 		'#advance_up'
		
	});	
	
	
	//*********************** sub nav persistence vvv ********************
	function persistPage(){
		var url = location.pathname.split('/')[1];
		$('#'+url+'>a').addClass('active_tertiary').next().show();
	}
	persistPage();
	
});