			function startGallery() {
	var myGallery = new gallery($('myGallery'), {
					timed: true,
					useReMooz: true,
					embedLinks: false
				});		
	var el = $('lista'),
		color = el.getStyle('backgroundColor');
	$('lista').addEvents({
		mouseenter: function(){
			this.morph({
				'background-color': '#EB1E32',
				'color': '#FFFFFF'
			});
		},
		mouseleave: function(){
			this.morph({
				backgroundColor: color,
				'color': '#808080'
			});
		}
	});
	$('lista').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '160px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '20px');
		}
	});
	var el = $('boton_uno'),
		color = el.getStyle('backgroundColor');
	$('boton_uno').addEvents({
		mouseenter: function(){
			this.morph({
				'background-color': '#EB1E32',
				'color': '#FFFFFF'
			});
		},
		mouseleave: function(){
			this.morph({
				backgroundColor: color,
				'color': '#909090'
			});
		}
	});
	var el = $('boton_dos'),
		color = el.getStyle('backgroundColor');
	$('boton_dos').addEvents({
		mouseenter: function(){
			this.morph({
				'background-color': '#EB1E32'
			});
		},
		mouseleave: function(){
			this.morph({
				backgroundColor: color
			});
		}
	});
	var el = $('boton_tres'),
		color = el.getStyle('backgroundColor');
	$('boton_tres').addEvents({
		mouseenter: function(){
			this.morph({
				'background-color': '#EB1E32'
			});
		},
		mouseleave: function(){
			this.morph({
				backgroundColor: color
			});
		}
	});
			};
window.addEvent('domready',startGallery);
	
