$(document).ready(function(){
	$("a.lightbox").lightBox();
	$("#SeeMoreImages").click(function(){
		var ts = new Date().getTime();
		$.get("/inc/ajax/WorkGallery.asp",{"timestamp":ts},function(data){
			$("#ImageDiv").fadeOut().html(data).fadeIn("normal");
			$("a.lightbox").lightBox();
		});
		return false;
	});
});
