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

function validate(form)
{
	if( form.cfname.value == "" || form.cfemail.value == "" || form.cfcomments.value == "" ) 
   { 
	  document.getElementById('message').innerHTML = 'Please fill out name, email and a message.';
	  document.getElementById('message').style.display = 'block';
	  return false; 
   }
}