$(document).ready(function(){

	$("body").addClass("js");
	// Lazy Load
	$('img:not(#contributors img)').lazyload({ effect: 'fadeIn'});
	
        // Launch dialogue
        window.dialogue.init();

	var filmstrip_size = 4;
	
	if( $('.author-list').width() > 482 ) {
		filmstrip_size = 6;	
	}
						   
	$('.galleryview').galleryView({
		filmstrip_size: filmstrip_size,
		frame_width: 103,
		frame_height: 120,
		background_color: 'transparent',
		nav_theme: 'dark',
		border: 'none',
		show_captions:true,
		caption_text_color: 'black',
		img_path: '/wp-content/themes/thesis_18/custom/images',
		transition_speed: 0
	});
	
});



