/**
 * This function is just a temporary helper to reduce the opacity of our
 * placeholder images. We want the images to exist on the page, but we want them
 * slightly transparent to make it clear that they aren't actual page elements.
 */
Event.onDOMReady(function(){
	$$('.placeholder img').each(function(placeholder) {
		placeholder.setOpacity(.50);
	});
});