(function($){
	// Fancy rollover breadcrumbs
	$(document).ready(function() {
		$('#navigation li').mouseover(function(){
			$(this).parents('li').children('a').addClass('active');
		});
		$('#navigation li').mouseout(function(){
			$(this).parents('li').children('a').removeClass('active');
		});
	});

	// Homepage Gallery
	$(document).ready(function(){		
		$('#photos').galleryView({
			panel_width: 940,
			panel_height: 229,
			transition_speed: 1500,
			transition_interval: 5000,
			nav_theme: 'dark',
			border: '0px solid white',
			pause_on_hover: true
		});
	});

})(jQuery);
