// Javascript document
// gestion du footer 
// ul mediasociaux
$("#facebook").mouseenter(function () {
 	$('#facebook').fadeTo('fast', 1, function() {
      // Animation complete.
    });
  });
  $("#facebook").mouseleave(function () {
 	$('#facebook').fadeTo('fast', 0.5, function() {
      // Animation complete.
    });
  });
  //
   $("#twitter").mouseenter(function () {
 	$('#twitter').fadeTo('fast', 1, function() {
      // Animation complete.
    });
  });
  $("#twitter").mouseleave(function () {
 	$('#twitter').fadeTo('fast', 0.5, function() {
      // Animation complete.
    });
  });
// menu page
 $("#imgMenuAccueil").mouseenter(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuAccueil').fadeTo('fast', 0, function() {
      // Animation complete.
    });
  });
$("#imgMenuAccueil").mouseleave(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuAccueil').fadeTo('slow', 1, function() {
      // Animation complete.
    });
  });
//
 $("#imgMenuBio").mouseenter(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuBio').fadeTo('fast', 0, function() {
      // Animation complete.
    });
  });
$("#imgMenuBio").mouseleave(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuBio').fadeTo('slow', 1, function() {
      // Animation complete.
    });
  });
//
 $("#imgMenuPart").mouseenter(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuPart').fadeTo('fast', 0, function() {
      // Animation complete.
    });
  });
$("#imgMenuPart").mouseleave(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuPart').fadeTo('slow', 1, function() {
      // Animation complete.
    });
  });
//
 $("#imgMenuApresSki").mouseenter(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuApresSki').fadeTo('fast', 0, function() {
      // Animation complete.
    });
  });
$("#imgMenuApresSki").mouseleave(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuApresSki').fadeTo('slow', 1, function() {
      // Animation complete.
    });
  });
//
 $("#imgMenuContact").mouseenter(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuContact').fadeTo('fast', 0, function() {
      // Animation complete.
    });
  });
$("#imgMenuContact").mouseleave(function () {
	// $(this).attr("src", "http://pathtoimage/imageausurvol.jpg");
 	$('#imgMenuContact').fadeTo('slow', 1, function() {
      // Animation complete.
    });
  });
//-------------------

	$(".imgSponsorsWeleda").hover(function() {
		$(this).attr("src","images/weleda_over.jpg");
			}, function() {
		$(this).attr("src","images/weleda.jpg");
	});
	$(".imgSponsorsBolle").hover(function() {
		$(this).attr("src","images/bolle_over.jpg");
			}, function() {
		$(this).attr("src","images/bolle.jpg");
	});
	$(".imgSponsorsRossignol").hover(function() {
		$(this).attr("src","images/rossignol_over.jpg");
			}, function() {
		$(this).attr("src","images/rossignol.jpg");
	});
	$(".imgSponsorsContamines").hover(function() {
		$(this).attr("src","images/contamines_over.jpg");
			}, function() {
		$(this).attr("src","images/contamines.jpg");
	});
	$(".imgSponsorsDouanes").hover(function() {
		$(this).attr("src","images/douanes_over.jpg");
			}, function() {
		$(this).attr("src","images/douanes.jpg");
	});



