window.addEvent('domready', function(){
	var el = $('product');
	// ajout de 2 elements
	$('product').getElements('img').addEvents({
		mouseenter: function(){
			// Taille de l'image a l'etat survole
			this.morph({
				'height': 200,
			});
		},
		mouseleave: function(){
			// Taille de l'image a l'etat initial
			this.morph({
				'height': 120,
			});
		}
	});
});
