function tinkerNav() {
	// set up the sliding navigation
	$('#coda-slider-1').codaSlider({
		dynamicArrows: false,
		dynamicTabs: false
	});

	// see if we are pre-scrolled
	var currentSection = window.location.hash;
	
	// if so
	if(currentSection.length) {
		
		// set this nav section active
		$('ul.menu li a[href="' + currentSection + '"]').addClass('active');
	} else {		
	
		// otherwise make the first nav item active
		$('ul.menu li a:first').addClass('active');
	};
	
	// click the nav
	$('ul.menu li a').click(function(){
		
		// get the target
		var targetSection = $(this).attr('href');
		
		// if they want contact
		if(targetSection == '#contact') {
			
			$.scrollTo('#contact', 1000);
			
			//make it flash
			$('.footer_contact').animate({
				'opacity' : '0'
			}, 500);
			$('.footer_contact').animate({
				'opacity' : '1'
			}, 1000);
			
			return false;
		} else {
		
			// otherwise, change the active state in the nav
			$('ul.menu li a').removeClass('active');
			$(this).addClass('active');
		
		};			
				
	});
	
};