$(document).ready(function(){
	
	// set one up for each lightbox
	/*
$(function() {
		$('.lightbox01 .enlarge').lightBox();
	});
	$(function() {
		$('.lightbox02 .enlarge').lightBox();
	});
*/
	
	
	$(".expanded").hide();
	$(".expanded").slideDown("slow");
	
	alert
	$(".more").hide();
	$(".showmore").click(function(){
			$(".more").slideToggle("slow");
			$(".showmore .choices").toggle();
	});
});
