// JavaScript Document.


//GALLERY SCRIPT
$(document).ready(function(){

$(".lightbox").lightbox();
						   
$(".toggle").click(function() {
    //$(".imageGallery").slideToggle("slow");    
			$(this).parent().find("div.imageGallery").slideToggle("slow");
				return false;				
  });

$(".closeMe").click(function(){
			$(".imageGallery").slideUp("slow");															
			
			return false;
			});


});

