$(document).ready(function() {

	// Toggle directions field
	$('.dir_slide').hide();
	$('.dir_toggle').click(function(){
		$('.dir_slide').toggle(800);
		
		return false;
	});
	
	
	// Highlight the current page
	var path = window.location.pathname.split('/');
	var curPage = path[path.length-1];
	$('#navBar li').each(function(index) {
		if($('a', this).attr('href') == curPage)
			$(this).addClass('current');
	});
	
	
	// Photo Gallery
	if ($('#gallery ul').length ) {
		$('#gallery ul').cycle({
			fx: 'uncover',
			after: function() { 
				$('#caption').html($('img', this).attr('alt'));
			}
		});
	}
	
});
