// JavaScript Document
$(document).ready(function() {
		$('#photos').galleryView({
			panel_width: 840,
			panel_height: 500,
			frame_width: 160,
			frame_height: 120,
			start_frame: 14,
			transition_speed: 1200,
			easing: 'easeOutBounce',
			pause_on_hover: true,
			nav_theme: 'light'
		});
		$('#photos').bind("contextmenu",function(e){
					  return false;
			});
});
