window.addEvent('domready', function(){
var list = $$('img.zoom');


	list.each(function(element) {

        var fx = new Fx.Styles(element, {duration:1000, wait:true}); // duration was 200 before // 500 before





	  element.addEvent('domready', function(){
              fx.start({
                        'margin-left': '0em',
                        'margin-right' : '0em',
                        'background-color': 'transparent',
                        'color' : '#fff',
                        'height' : '60px',
                })
	 
     
        });
});








list.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:200, wait:false}); // duration was 200 before // 500 before


 
	element.addEvent('mouseenter', function(){
		fx.start({
			'margin-left': '20em',
			'margin-right' : '20em',
			'background-color': 'transparent', 
			'color' : '#fff',
			'height' : '70px',
			
			
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'margin-left': '0em',
			'margin-right' : '0em',
			'background-color': 'transparent',
			'color': '#fff',
			'height' : '60px'
		});
	});
 
});
});
