$(document).ready(function() {
	$('a.thumb').each(function() {
		this.onclick = function () {
			$("#photo").toggle();
			$("#photo").load("/image.php",
				{path: this.href},
				function() {
				$("#photo").fadeIn("slow");
			});
			$("#title").html(this.getAttribute('title'));
			$("#desc").html(this.getAttribute('rel'));
			return false;
		}
	});
});