var siteencours = 'http://localhost/demay/';

var myrules = {
	'img.image_galerie' : function(yl){
		yl.onmouseover = function(){
				new Effect.Morph(this, { style:'width:200%; float:none; margin-left:-100px;'});
				new Effect.Morph(this.parentNode, { style:'width:400px; float:none;'});
				//new Effect.Morph( this, 200 );
		}
		yl.onmouseout = function(){
				new Effect.Morph(this, { style:'width:75%; float:left; margin-left:2px;', duration:0.8});
				new Effect.Morph(this.parentNode, { style:'width:142px; float:left;'});
				//new Effect.Scale( this, 50 );
		}
	}
};

Behaviour.register(myrules);
