$(document).ready(function(){

		$('.stripe tr:even').addClass('alt');
		
		$('#photos').galleryView({
			panel_width: 940,
			panel_height: 330,
			overlay_height: 60,
			overlay_opacity: 0.7,
			transition_speed: 2000,
			transition_interval: 8000,
			nav_theme: 'light',
			border: '1px solid #666',
			pause_on_hover: true
		});

		// hide all toggles
		$('div.toggle, ul.toggle').hide();
		
		// toggles
		$('a.toggle').toggle(function(){
			var toggle = $(this).parent().next('div.toggle, ul.toggle');
			toggle.fadeIn();
		}, function(){
			$(this).parent().next().fadeOut();
		});

});