// JavaScript Document

$(document).ready(function(){
		$('td.area').children("img").hide().parent("td").children('img:first').show();
		$("table.selectPhotoTable td a").bind("click", showfoto)
});

function showfoto() {
		var MyClassName = $(this).children("img").attr("class");
		$('td.area img').hide();
		$("td.area img#"+MyClassName).toggle();
		return false;
}
