window.addEvent('domready', function(){
    
    var status = {
        'true': 'open',
        'false': 'close'
    };
    
	if(document.getElementById("mehrInfo")){
		
    var txt_1 = new Fx.Slide('text_1', {mode: 'horizontal'}).show();	
    var txt_2 = new Fx.Slide('mehrInfo', {mode: 'horizontal'}).hide();
    
    $('slidein').addEvent('click', function(e){
		e.stop();
       	txt_2.slideIn();     
    });
    
    $('slideout').addEvent('click', function(e){
		e.stop();
        txt_2.slideOut();     
    });

	}
});