// JavaScript Document
window.addEvent('domready', function(){
	//animate_main_figure();
});

function animate_main_figure(){
	new Asset.image('/mascotte.gif', {onload: function(){
		var myTransition = new Fx.Transition(Fx.Transitions.Elastic, 3);
		var m = new Fx.Morph($('mascotte').getElement('img'), {duration: 1000, transition: myTransition.easeOut}); 
		m.start({
			'height': [10, 260], 'width': [10, 264], 'margin-top': [175, 0]  
		});													   
	}});
}
