function flip(id1,id2){
		document.getElementById(id1).style.display="none";
		document.getElementById(id2).style.display="block";
		return false;
}
function timedPreloader1(){
		setTimeout("flip('preloader1','joc1')",6000);
}
	
function nowait1(){
	flip('preloader1','joc1');
}