function moveTransax1(){   
    $("#transactionWeb").fadeIn(1500);
    $("#transactionWeb").animate({'margin-left':'350px'},3000);
    $("#transactionWeb").fadeOut(1500);  
    $("#transactionWeb").css('margin-left','0');
}
function moveTransax2(){ 
    $("#etatDesLieux").fadeIn(1500);
    $("#etatDesLieux").animate({'margin-left':'0'},3000);
    $("#etatDesLieux").fadeOut(1500);  
    $("#etatDesLieux").css('margin-left','300px');
}
function moveTransax3(){ 
    $("#transaction").fadeIn(1500);
    $("#transaction").animate({'margin-top':'50'},1500);
    $("#transaction").fadeOut(3000);  
    $("#transaction").css('margin-top','-100px');
}
function moveTransax4(){ 
    $("#gerance").show(1500);
    $("#gerance").animate({'margin-left':'300'},1500);
    $("#gerance").delay(500).hide(3000);  
    $("#gerance").css('margin-left','50px');
}
function moveTransax5(){ 
    $("#organiseur").slideDown(1500);
    $("#organiseur").animate({'margin-top':'75'},1500);
    $("#organiseur").delay(500).fadeOut(3000);  
    $("#organiseur").css('margin-top','50px');
}
$(function(){
   $("#transactionWeb").hide();   
   $("#etatDesLieux").hide(); 
   $("#transaction").hide(); 
   $("#gerance").hide(); 
   $("#organiseur").hide();
   //moveTransax1();   
   moveTransax2();   
   moveTransax3();   
   moveTransax4();   
  // moveTransax5();   
   setInterval('moveTransax1()',8000);
   setInterval('moveTransax2()',7000);
   setInterval('moveTransax3()',6000);
   setInterval('moveTransax4()',10000);
   setInterval('moveTransax5()',12000);
});
