jQuery.noConflict();
jQuery(document).ready(function(){
	if (jQuery('#photos img').size() > 2) {
		jQuery('#photos').galleryView({
			panel_width: 460,
	    		panel_height: 280,
	    		frame_width: 50,
	    		frame_height: 50,
	    		transition_speed: 1200,
	    		background_color: '#937fbb',
	    		border: 'none',
	    		easing: 'easeInOutBack',
	    		pause_on_hover: true,
	    		nav_theme: 'custom',
	    		overlay_height: 52,
	    		filmstrip_position: 'top',
	    		overlay_position: 'top',
			border: '1px solid #937fbb',
			pause_on_hover: true,
			caption_text_color: 'black',
			overlay_color: 'black',
			overlay_text_color: 'black'
		});
	}else{
		jQuery('.filmstrip').remove();
	}
});



