window.addEvent('domready', function(){


if($defined($('kastenright'))) { // only perform this if the current page contains a slideable box

//var contentFx = new Fx.Slide('kastenright', { duration: 200,   mode: 'horizontal', transition: Fx.Transitions.Sine.easeOut});
var kastenFx = new Fx.Morph('kastenright', {duration: 400, transition: Fx.Transitions.Sine.easeOut});
var contentFx = new Fx.Morph('kastenrightcontent', {duration: 1500, transition: Fx.Transitions.Sine.easeOut});
k = $('kasten');
state = 1;

kcontent = $('kastenrightcontent');
kcontent.set('opacity', 0);


	$('opener').addEvent( 'click', function(){

						
						
						if(state == 1) {
						kastenFx.start( 
						{'width': [20,340]
//						,'height': [300,10]
						});
						contentFx.start({'opacity': [0,1]});
						$('openerarrow').set('src', '/fileadmin/templates/korbmacher/bilder/pfeil.gif');
								state = 0; 
						}
						else {
						kastenFx.start( 
						{'width': [340,20]
//						,'height': [300,10]
						}
						
						); 
						$('openerarrow').set('src', '/fileadmin/templates/korbmacher/bilder/pfeil2.gif');
						state = 1;
						// this.getElement('img').setStyle('margin-top', '0px');
						}
//contentFx.toggle();
						
					      } 
	);
	$('opener').fireEvent( 'click');
} // end of if defined(kasten)
});

