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

	/* ********************* */
	/* Werbung Bounce Effekt */
	/* ********************* */
	$('werbung').setStyle('height', '50px');
	$('werbung').setStyle('opacity', '0.6');
	$('werbung').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '170px');
			this.morph({
				'opacity': 1,
			});
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '50px');
			this.morph({
				'opacity': 0.6,
			});
		}
	});
	
});