function launch(){o=2;for(o=2;o<6;o++){document.getElementById("numero-"+o).setAttribute("class","slide hidden");}}
function hide(){document.getElementById("showcase-in").setAttribute("class", "width js-on");launch();}
function appear(el){var element=document.getElementById("numero-"+el);element.setAttribute("class","slide active");}
function fade(el){var element=document.getElementById("numero-"+el);element.setAttribute("class","slide hidden");}
function foo(){i=1;for(i=1;i<5;i++){next=i+1;setTimeout("fade("+i+")",i*8000);setTimeout("appear("+next+")",i*8000);}
for(i=5;i<6;i++){next=1;setTimeout("fade("+i+")",i*8000);setTimeout("appear("+next+")",i*8000);setTimeout("foo()",i*8000);}}
function load(){hide();foo();}
window.onload=load();
