function ToggleImage(container, imageUrl)
{
	$(container).select('img').each(function(image) { image.toggleClassName('hide')  });
}