function MouseOver(ville){
    document.getElementById('carte').src='img/carte_cliquable/carte_'+ville+'.jpg';
    document.getElementById('logoheader').src='img/contact-'+ville+'.png';
}

function MouseOut(){
    document.getElementById('carte').src='img/carte_cliquable/carte.jpg';
    document.getElementById('logoheader').src='img/contact.png';
}

function MouseOverMc(ville){
    document.getElementById('mini_carte_img').src='img/mini_carte_cliquable/mini_carte_'+ville+'.png';
}

function MouseOutMc(){
    document.getElementById('mini_carte_img').src='img/mini_carte_cliquable/mini_carte.png';
}

function LaunchSlide(){
    $('#slide').animate({marginLeft: "-620" }, 12000, 'linear');
    $('#slide').animate({marginLeft: "700" }, 1);
}

function LaunchGallery(){
       var count = -110;
       var count2 = 0;
       /*       $('#dirarrow').mouseenter(function(){
          $(this).attr("src", "img/slideshowaccessoires/droite_hover.jpg")
       });
       $('#dirarrow').mouseleave(function(){
          $(this).attr("src", "img/slideshowaccessoires/droite.jpg")
	  });*/
       $('#containerarrowright').click(function(){
       if(count>-110*9){
           $('#thumbvisible').animate({marginLeft: count}, 150);
           count = count -110;
       } else if(count<= -110*9) {
           $('#thumbvisible').animate({marginLeft: "0px"}, 500)
           count = -110;
       }
       });

       $('.imgslideshow').hover(function(){
           var idthumb = $(this).attr('src');
           $('#imgfront').attr('src', idthumb);
       });
}

