function fadeInWT() {
	var img = $('teaserWohnmobilstellplatz');
	var left = img.getStyle('left').toInt();
	img.setStyle('left', (img.getSize().x.toInt() + left) + 'px');
	img.set('opacity', 1);
	new Fx.Tween(img, {
		property: 'left',
		duration: 4000
	}).start(left);
}