function intro_fadeout(){
	new Effect.Fade('flash_intro', { duration: 0.5 });
}

function change_content(){
	/*document.getElementById('flash_intro').innerHTML = '';*/
	setTimeout ( "intro_fadeout()", 14);
}

function skip_intro(){
	var fli = document.getElementById('flash_intro');
	fli.parentNode.removeChild(fli);
}
	
function skip_intro_load(){
	var fli = document.getElementById('flash_intro');
	fli.parentNode.removeChild(fli);
}

