$(document).ready(function() {
  $("ul#ticker01").liScroll({travelocity: .03});
  $("#tab-pieux").hover(
      function () {
        $('#image-fondation').hide();
		$('#image-geothermie').hide();
		$('#image-pieux').show();
		$('.active-pieux').removeClass('active-pieux');
		$('.active-geothermie').removeClass('active-geothermie');
		$(this).addClass('active-pieux');		
      }
    );
  $("#tab-fondation").hover(
      function () {
        $('#image-pieux').hide();
		$('#image-geothermie').hide();
		$('#image-fondation').show();
		$('.active-pieux').removeClass('active-pieux');
		$('.active-geothermie').removeClass('active-geothermie');
		$(this).addClass('active-pieux');		
      }
    );
  $("#tab-geothermie").hover(
      function () {
        $('#image-pieux').hide();
		$('#image-fondation').hide();
		$('#image-geothermie').show();
		$('.active-pieux').removeClass('active-pieux');
		$(this).addClass('active-geothermie');		
      }
    );

});