/**
 * Executed when document is finished loading elements into DOM
 */
$(document).ready(function() {

	$(".pop").fancybox();

});

function showImage(elem){
	$('.small-gallery .active').removeClass('active');
	$(elem).find('img').addClass('active');
	$(elem).parent().parent().find('> a').attr('href', $(elem).attr('href'));
	$(elem).parent().parent().find('.medium').attr('src', $(elem).find("img").attr('src').replace('small', 'medium'));
	//$(elem).parent().parent().children('.medium').html('');

	return false;
}
