// JavaScript Document


$(document).ready(function() {
	
		$('#project').removeClass("hide");
		$('#imagedump').removeClass("hide");  
		$('#projectselector').removeClass("hide");  
		
		$('#project').galleryView({
			panel_width: 560,
			panel_height: 300,
			frame_width: 150,
			frame_height:110,
			transition_speed: 'fast',
			transition_interval: 4000,
			pause_on_hover: true,
			panel_scale: 'crop',
			show_captions: false,
			filmstrip_size: 3,
			frame_gap: 10,
			frame_margin:20,
			nav_theme:'custom',
			show_panels: true
		});

		$('#imagedump').galleryView({
			panel_width: 560,
			panel_height: 300,
			frame_width: 150,
			frame_height:110,
			transition_speed: 'fast',
			transition_interval: 4000,
			pause_on_hover: true,
			panel_scale: 'crop',
			show_captions: false,
			filmstrip_size: 3,
			frame_gap: 10,
			frame_margin:20,
			nav_theme:'custom',
			show_panels: true,
			frame_opacity: 1
		});
	
		$('#projectselector').galleryView({
			panel_width: 560,
			panel_height: 300,
			frame_width: 150,
			frame_height:110,
			transition_speed: 'fast',	//slow
			transition_interval: 4000,	//6000
			pause_on_hover: true,
			panel_scale: 'crop',
			filmstrip_size: 3,
			frame_gap: 10,
			frame_margin:20,
			nav_theme:'custom',
			show_panels: true,
			show_captions: true,
			frame_opacity: 1,
			overlay_opacity: 1,
			pointer_size: 0
		});

		$('div.panneloverride').cycle({
			fx:    'fade', 
			speed:  2500,
			timeout: 5000
		});	

		
});


