(function(window,document){
 	window.addEvent('domready',function(){

		var coords=document.body.getCoordinates();
		$('bg').getElement("img").setStyle('min-width',coords.width);

		$('get').addEvent('click',function(){
			var img1=$('bg').getElement("img");
			var img2=new Asset.image('/garden/app/webroot/img/2_web.jpg',{
				onload:function(){
					img1.pin();
					var coords=img1.getCoordinates();
					console.log(coords);
					var left=(coords.left+coords.width);
					this.pin();
					this.setStyle('left',left);
					this.setStyle('top',coords.top);
					this.inject(img1,'after');
					this.setStyle('width',coords.width);

					var fx=new Fx.Elements($$(this,img1),{
						'onComplete':function(){
							img1.destroy();
						}	
					}).start({
						'0':{
							left:[coords.left]
						},
						'1':{
							left:[coords.left,(coords.left-coords.width)]
						}
					});

				}	
			});
		});
	});

})(window,document);
