window.addEvent('domready', function() {
  
  var willkommenEffect = new Fx.Morph($('willkommen'), {duration: '1500'});
  willkommenEffect.start({
    'opacity': [0, 1]
  });
  var organisationEffect = new Fx.Morph($('organisation'), {duration: '1500'});
  var organisationFunction = function(){
    organisationEffect.start({
     'opacity': [0, 1]
    });
  }
  organisationFunction.delay(1500);
  var willkommenFunction = function(){
    willkommenEffect.start({
      'opacity': [1, 0]
   });  
  }
  willkommenFunction.delay(3500);
  var engelFunction = function(){
    var engelEffect = new Fx.Morph($('engel'), {duration: '1500'});
    engelEffect.start({
      'opacity': [0, 1]
    });
  }
  engelFunction.delay(4500);
  var messeorteFunction = function(){
    var messeorteEffect = new Fx.Morph($('messeorte'), {duration: '1500'});
    messeorteEffect.start({
      'opacity': [0, 1]
    });
  }
  messeorteFunction.delay(6500);
  var veranstaltungsorteFunction = function(){
    var veranstaltungsorteEffect = new Fx.Morph($('veranstaltungsorte'), {duration: '1500'});
    veranstaltungsorteEffect.start({
      'opacity': [0, 1]
    });
  }
  veranstaltungsorteFunction.delay(8000);

});