// Enable Gallery view functionality for banner slideshow
	$(document).ready(function(){
		$('#photos').galleryView({
			panel_width: 200,
			panel_height: 150,
			frame_width: 200,
			frame_height: 0,

  		filmstrip_size: 1,
  		overlay_height: 0,
  		overlay_font_size: '1em',
  		transition_speed: 400,
  		transition_interval: 6000,
  		overlay_opacity: 0.6,
  		overlay_color: 'transparent',
  		background_color: 'transparent',
  		overlay_text_color: 'white',
  		caption_text_color: 'white',
  		border: '2px solid black',
  		nav_theme: 'none',
  		easing: 'swing',
  		filmstrip_position: 'bottom',
  		overlay_position: 'bottom',
  		show_captions: false,
  		fade_panels: true,
  		pause_on_hover: true
		});
	});
