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

	if ($('Imagotipo')) {
		$('Imagotipo').fade ('hide');
		$('Logotipo').fade ('hide');
		$('MapaWeb').setStyle ('height', 0);
	}
});

window.addEvent ('load', function () {
	enCarregar();

	if ($('Imagotipo')) {
		$('Imagotipo').set('tween', {duration: 5000});
		$('Logotipo').set('tween', {duration: 1500});
		$('Imagotipo').fade ('in');
		$('Logotipo').fade ('in');
		$('MapaWeb').set('tween', {duration: 5000});
		$('MapaWeb').tween ('height', 250);
	}
});

