window.addEvent('domready', function() {
	var el_A = $('logoBox');
	var el_B = $('langBox');
	var el_C = $('footer');
	// MooTools is able to handle effects without the use of a wrapper,
	// so you are able to do effects with just one easy line.	
	// There are different ways to add a fading opacity effect to an element click
	el_A.fade('hide');
	el_B.fade('hide');
	el_C.fade('hide');
	//
	el_A.set('tween', {duration: 1600});
	el_B.set('tween', {duration: 1200});
	el_C.set('tween', {duration: 1200});
	//
	var show_A = function(){ el_A.tween('opacity',1);}.delay(1200,this);
	var show_B = function(){ el_B.tween('opacity',1);}.delay(1800,this);
	var show_C = function(){ el_C.tween('opacity',1);}.delay(2400,this);
});
