function thumbs (id)
{
	var coords = this.cumulativeOffset();
	$(id).setStyle(
		{
			'position': 'absolute',
			'left': (coords[0] + 15) + 'px',
			'top': (coords[1] + this.getHeight()) + 'px'
		}
	);
	
	$(id).show();
	
	Event.observe($$('#' + id + ' a.cerrar').first(), 'click', function(ev) {
		$(id).hide();
		this.stopObserving(ev);
	});
}
