Galleria.loadTheme('/wp-content/themes/GDC/scripts/themes/classic/galleria.classic.js');
$(function(){
	$('#images').galleria({
		transition: 'fade',
		autoplay: 2500
	});	
	
	/* Before & After Gallery */
	$('#before-after-gallery ul li').hover(function(){
		$(this).find('img.before').show();
		$(this).find('span.before-text').show();
		$(this).find('img.after').hide();
		$(this).find('span.after-text').hide();
	}, function(){
		$(this).find('img.before').hide();
		$(this).find('span.before-text').hide();
		$(this).find('img.after').show();
		$(this).find('span.after-text').show();
	});
	
});
