
	$(document).ready(function() {
		$("img[id='photo']").mouseover(function() {
			$("div[id='photoinfo" + $(this).attr("rel") + "']").show();
			//alert($(this).attr("rel"));
		});
		$("img[id='photo']").mouseout(function() {
			$("div[id='photoinfo" + $(this).attr("rel") + "']").stop();		
			$("div[id='photoinfo" + $(this).attr("rel") + "']").hide();			
		});
		
	});

