// JavaScript Document


$(document).ready(function() {
		
	
		$('#project').removeClass("hide");
		$('#imagedump').removeClass("hide");  
		
		$('#project').galleryView({
		panel_width: 560,
		panel_height: 300,
		frame_width: 150,
		frame_height:110,
      	transition_speed: 'slow',
		transition_interval: 6000,
		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: 'slow',
		transition_interval: 6000,
		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: 0.8
		});
	
		return false;
	});

