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

	var status = {
		'true': 'open',
		'false': 'close'
	};

	// zu morphende layer variablen zuweisen
	var bildDiv = $('bild');
	var textDiv = $('text');
	
	window.addEvent('domready', function(){
		// Changes the element's style to .myClass defined in the CSS
		bildDiv.morph('.bild_in');
		textDiv.morph('.text_in');

	});


});
