$(document).ready(function () {
   //prechargement images
   i1=new Image;i1.src="webimages/homepage.jpg";
   i2=new Image;i2.src="webimages/accroche2.jpg";
   i3=new Image;i3.src="webimages/accroche3.jpg";
   i4=new Image;i4.src="webimages/accroche4.jpg";
   i5=new Image;i5.src="webimages/portfolio.jpg";
   i6=new Image;i6.src="webimages/agence.jpg";
   i7=new Image;i7.src="webimages/team_lucien.jpg";
   i8=new Image;i8.src="webimages/team_cedrik.jpg";
   i9=new Image;i9.src="webimages/team_laurent.jpg";
   i10=new Image;i10.src="webimages/loading.gif";
   
   //Ouverture liens externe
   $('a[rel=externe]').attr('target', '_blank');
   
   //Hover Boxes Departements
   $("#nav_departements img, #vignettes img").fadeTo(0, 1);
    $("#nav_departements img, #vignettes img").hover(function () {
        $(this).fadeTo("fast", 0.7);
    }, function () {
        $(this).fadeTo("fast", 1);
    });
    
}); 

//EMAIL
function email() {
    var e = document.getElementById('email');
    var x = "tea" + "m@" + "lelix" + "ir.ch";
    e.innerHTML = x;
    e.href = "mailto:" + x;
}
function email1() {
    var e = document.getElementById('email1');
    var x = "tea" + "m@" + "lelix" + "ir.ch";
    e.innerHTML = x;
    e.href = "mailto:" + x;
}
