
window.addEvent('domready', function() {

	$$('#maquetable .foto a').each(function(item) {
		item.onclick = function() { return hs.expand(this, { wrapperClassName: 'wide-border', align: 'center', dimmingOpacity: .75, captionText: this.title } ); }
	});

	$$('#maquetable .contraido').each(function(item) {
		$extend(item, {
			expanded: false,
			expand: function() {
				if (this.expanded) return;
				new Fx.Reveal(this.getContent()).reveal().addEvent('complete', function() {
					this.expanded = true;
				}.bind(this));
				this.className = 'expandido';
			},
			collapse: function() {
				if (!this.expanded) return;
				new Fx.Reveal(this.getContent()).dissolve().addEvent('complete', function() {
					this.expanded = false;
				}.bind(this));
				this.className = 'contraido';
			},
			getContent: function() {
				return this.getElement('.parrafo');
			}
		});

		item.getElement('.expandir').addEvent('click', item.expand.bind(item));
		item.getElement('.contraer').addEvent('click', item.collapse.bind(item));
	});

});
