window.addEvent('domready', function() {
	//splashScreen = $('splashScreen');
	//splashDiv = document.getElementById('splashScreen');
	var splashfx = new Fx.Styles('splashScreen', {duration:1000, wait:false, transition: Fx.Transitions.Expo.easeIn});
	var splashfxOut = function() {
		splashfx.start({'opacity': '0'});
		splashTimerClear();
	};
	function splashTimerClear() {
		if (typeof splashTimer == "undefined") {
		} else {
			splashTimer = $clear(splashTimer);
		}
	};
	splashTimer = splashfxOut.delay(4000);
});

