$(document).ready(function(){

	// gallery categories
	$.each($("ul.gallery-pics, ul.popup"), function(index){
		
	$(this).find('li a').lightBox({fixedNavigation:true});
	var gallerycat = $(this);
	var firstgalleryentry = gallerycat.find('li:first');

	gallerycat.find('li').hide();
	firstgalleryentry.show();
	});
	
	$("ul.gallery-pics:last").addClass('lastGallery');
	
	// popup galleries in entries
	$.each($("ul.popup li"), function(){
	imgsrc = $(this).find("img").attr("src");
	$(this).attr("href", imgsrc);
	});
	
//	$('.popuplink').click(function(){
//		var imglink = $(this).attr("href");		
//	});

	$('.popuplink').lightBox({fixedNavigation:true});
		
	// remove href from first img as 'a' overlay will replace this (prevents duplicate image)
//	$("ul.popup li img:first").removeAttr("href");
	$("ul.popup li").hide();
	$("ul.popup li:first").show();
	var firstsrc = $("ul.popup li img:first").attr("src");
	$("ul.popup li:first").append("<div class='popup-zoom'></div>");
	$("ul.popup li").lightBox({fixedNavigation:true});

});
