//fonction affiche les images suivantes et précédentes
function f_newSlide(chemin,thisImg)
{



    var a=tab_images[thisImg].split('/');

    if (a[0]=='_temp')
    {
        document.slider.src = chemin+tab_images[thisImg];
    }
    else
    {
        document.slider.src = chemin+"_img_upload/offres/"+tab_images[thisImg];
    }

    document.getElementById("nom_img_courante").innerHTML = tab_noms[thisImg];

    cpt_img = thisImg;


     //boucle d'apparition de tout les élements
    for (var i = 0; i<5; i++)
    {
        //si l'élément existe

        if(document.getElementById("photo_"+i))
        {
            document.getElementById("photo_"+i).className='curseur_main border_image_diaporama';
        }

        /*
        if ($('photo_'+i))
        {
            $('photo_'+i).className='curseur_main border_image_diaporama';
        }
        */

    }

    // $('photo_'+thisImg).className='curseur_main couleur_border_td';
    document.getElementById("photo_"+thisImg).className='curseur_main couleur_border_td';

    document.getElementById("lightbox_zoom").href=chemin+"_img_upload/offres/"+tab_images_noms[thisImg];






}

//fonction qui execute la popup
function f_ouvre_popup(chemin,thisImg)
{
    window.open(chemin+"_img_upload/offres/"+tab_images_noms[thisImg],"_blank");
}


