/*
 * fadein/fadeout avec survol et click sur une zone en jQuery 
 * Mathias Forbach for Angebault and Co
 */
jQuery.noConflict();
jQuery(document).ready(function(){
 jQuery("#texte1,#texte2,#texte3,#texte4,#texte5,#texte6,#texte7,#texte8,#texte9,#texte10,#texte11,#texte12,#texte13,#texte14,#texte15,#texte16,#texte17,#texte18").hide();

    jQuery("#photo1").hover(
      function () {
        jQuery("#texte1").show("slow");
      }, 
      function () {
        jQuery("#texte1").hide("slow");
      }
    );
    jQuery("#photo2").hover(
      function () {
        jQuery("#texte2").show("slow");
      }, 
      function () {
        jQuery("#texte2").hide("slow");
      }
    );
    jQuery("#photo3").hover(
      function () {
        jQuery("#texte3").show("slow");
      }, 
      function () {
        jQuery("#texte3").hide("slow");
      }
    );
    jQuery("#photo4").hover(
      function () {
        jQuery("#texte4").show("slow");
      }, 
      function () {
        jQuery("#texte4").hide("slow");
      }
    );
    jQuery("#photo5").hover(
      function () {
        jQuery("#texte5").show("slow");
      }, 
      function () {
        jQuery("#texte5").hide("slow");
      }
    );
    jQuery("#photo6").hover(
      function () {
        jQuery("#texte6").show("slow");
      }, 
      function () {
        jQuery("#texte6").hide("slow");
      }
    );
    jQuery("#photo7").hover(
      function () {
        jQuery("#texte7").show("slow");
      }, 
      function () {
        jQuery("#texte7").hide("slow");
      }
    );
    
    
    
    
    
    jQuery("#photo8").hover(
      function () {
        jQuery("#texte8").show("slow");
      }, 
      function () {
        jQuery("#texte8").hide("slow");
      }
    );
    jQuery("#photo9").hover(
      function () {
        jQuery("#texte9").show("slow");
      }, 
      function () {
        jQuery("#texte9").hide("slow");
      }
    );
    jQuery("#photo10").hover(
      function () {
        jQuery("#texte10").show("slow");
      }, 
      function () {
        jQuery("#texte10").hide("slow");
      }
    );
    jQuery("#photo11").hover(
      function () {
        jQuery("#texte11").show("slow");
      }, 
      function () {
        jQuery("#texte11").hide("slow");
      }
    );
    jQuery("#photo12").hover(
      function () {
        jQuery("#texte12").show("slow");
      }, 
      function () {
        jQuery("#texte12").hide("slow");
      }
    );
    jQuery("#photo13").hover(
      function () {
        jQuery("#texte13").show("slow");
      }, 
      function () {
        jQuery("#texte13").hide("slow");
      }
    );
    jQuery("#photo14").hover(
      function () {
        jQuery("#texte14").show("slow");
      }, 
      function () {
        jQuery("#texte14").hide("slow");
      }
    );
  });

  

