function flip(id1,id2){
		document.getElementById(id1).style.display="none";
		document.getElementById(id2).style.display="block";
		return false;
}
function timedPreloader(){
		setTimeout("flip('preloader','joc')",10000);
}
	
function nowait(){
	flip('preloader','joc');
}
