function showphoto(image)
{
	var tag="<img src=\"img/"+image+".png\" />";
	Element.update("photo", tag);
	new Effect.Appear('photo', {duration:'0.7'});
}

function hidephoto()
{
	new Effect.Fade('photo', {duration:'0.1'});
}

