Event.observe(window, 'load', function() { 
	$('rotatedImages').hide();
	link = document.createElement("a");
	link.setAttribute("href","#rotatedImages");
	link.setAttribute("id","showRotated")
	linkText = document.createTextNode("Sim, mas quero rodá-la");
	link.appendChild(linkText);
	paragraph = document.createElement("p");
	paragraph.setAttribute("id","showRotatedImages");
	paragraph.appendChild(link);
	document.getElementsByTagName("blockquote")[0].appendChild(paragraph);
	
	Event.observe($('showRotated'), 'click', function(){
		$('rotatedImages').show();
		$('showRotated').hide();
		return false;
		});
	
	});