$(document).ready(function() {
	$('#photos').galleryView({
		panel_width: 800,
		panel_height: 390,
		frame_width: 30,
		frame_height: 21,
		overlay_color: '#222222',
		overlay_text_color: '#ffffff',
		caption_text_color: '#222222',
		background_color: '#ffffff',
		border: 'none',
		nav_theme: 'dark',
		pause_on_hover: true
	});
});

function showGallery() {
	setTimeout(function(){
		if($('#gallery-hidder').is(':hidden')) {
			$('#gallery-hidder').removeClass('loader');
			$('#gallery-hidder').fadeIn('slow');
		}
	}, 2000);
}

function showFilmstrip() {
	$('.filmstrip').css('visibility', 'visible');
}
