$(document).ready(function() {
	setupZoom(); // set up fancy zoom
	
	$('div.portfolioPage:eq(0)').css({display:'block'}).addClass('open');
	
	$('div.portfolioPage:eq(0)').children('ul.gallery').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '.imageHolder' // the containing selector for our main image
		});
	$('ul.portfolioThumbs li').click(function() {
		$('ul.portfolioThumbs li').removeClass('active');
		$(this).addClass('active');
		$('div.portfolioPage').css({display:'none'}).removeClass('open');
		$('.imageHolder').removeClass('galleria_wrapper');
		$('.gallery').removeClass('galleria');
		$('span.caption').remove();
		$('div.galleria_wrapper').remove();
		$('div.portfolioPage:eq('+$('ul.portfolioThumbs li').index(this)+')').css({display:'block'}).addClass('open').children('ul.gallery').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : 'div.open .imageHolder' // the containing selector for our main image
		});
	});
});