function test2(cont) {
	$('esempio').src='images/esempio'+cont+'.jpg';
	Effect.Grow('esempio',{duration:1});
	timer=setTimeout("test("+cont+")",4000);
}

function test(cont) {
	Effect.Shrink('esempio',{duration:.6});
	num=Math.round(Math.random()*6)+1; if(num==cont) num=Math.round(Math.random()*6)+1; if(num==cont) num=Math.round(Math.random()*6)+1;
	cont=num;
	timer=setTimeout("test2("+cont+")",700);
}
