var startFadeIn = function(){
	$$('.body_content').addEvent('mousemove', function(){
		currentOpacity = $('StartSplash').getStyle('opacity');
		if (currentOpacity == 1){
			$('StartSplash').set('morph',{duration:2000});
			$('StartSplash').morph({'opacity':[1,0] }).delay(1000);
		}
	});
};

window.addEvent('domready', function() {
	if ($('StartSplash')){
		startFadeIn();
	}
});
