var allPartenaires = ["logo_agora", "logo_je", "logo_jade", "logo_societe_generale", "logo_altran", "logo_kpmg", "logo_cci_clermont", "logo_esc_clermont_aacsb", "logo_esc_diplomes", "logo_siaje", "logo_study_consult", "logo_ajc", "logo_custed", "logo_ypi", "logo_campe", "logo_fep", "logo_aiesec"];
var s = 500;
var t = 0;

$(document).ready(showPartenaires1());

function showPartenaires1(){

    $('#image_gauche').animate({
        width: "127px",
        marginLeft: "5px"
    },{duration: s, queue: false, specialEasing: {width: 'linear'}});
    
    $('#face_gauche').animate({
        width: "141px",
        backgroundColor: "#af1212",
        marginLeft: "9px"
    },{duration: s, queue: true, specialEasing: {width: 'linear'}});

    $('#image_droite').animate({
        width: "127px",
        marginLeft: "5px"
    },{duration: s, queue: true, specialEasing: {width: 'linear'}});

    $('#face_droite').animate({
        width: "141px",
        backgroundColor: "#e86262"
    },{duration: s, specialEasing: {width: 'linear'},complete:function(){ showPartenaires2()}});

}

function showPartenaires2(){

    $('#image_gauche').animate({
        width: "0px",
        marginLeft: "0px"
    },{duration: s, queue: true, specialEasing: {width: 'linear'}});

    $('#face_gauche').animate({
        width: "0px",
        backgroundColor: "black",
        marginLeft: "50px"
    },{duration: s, queue: true, specialEasing: {width: 'linear'}});

    $('#image_droite').animate({
        width: "180px",
        marginLeft: "10px"
    },{duration: s, queue: true, specialEasing: {width: 'linear'}});

    $('#face_droite').animate({
        width: "200px",
        backgroundColor: "#d41616"
    },{duration: s, specialEasing: {width: 'linear'},complete:function(){ showPartenaires3()}});
}

function showPartenaires3(){
    t++;
    $('#face_gauche').css("width", "200px");
    $('#face_gauche').css("backgroundColor", "#d41616");
    document.getElementById('face_gauche').innerHTML = "<img id=\"image_gauche\" src=\"images/logo/entreprise/" + allPartenaires[t%(allPartenaires.length)] + ".png\" />";

    $('#face_droite').css("width", "0px");
    $('#face_droite').css("backgroundColor", "#e86262");
    document.getElementById('face_droite').innerHTML = "<img id=\"image_droite\" src=\"images/logo/entreprise/" + allPartenaires[(t+1)%(allPartenaires.length)] + ".png\" />";
    $('image_droite').css("width", "0px");
    $('image_droite').css("marginRight", "20px");

    window.setTimeout(showPartenaires1, 3000);
}
