//Photo Gallery
function loadPhoto(id,page,w,h) {
	
	$("div#photo").fadeOut("fast", function() {	
		$("div#photo").load("includes/gallery_photo.php?photo=" + id + "&p=" + page);									
		$("div#photo_wrapper").animate({
			height: h					   
		},"slow", function() {									
					$("div#photo").fadeIn("slow");																				  
		});
	});

}

function loadFirstPhoto(id,page,w,h) {
		$("div#photo_wrapper").animate({
			height: h					   
		},"slow");		
}
