$(function(){

     
     if($.fn.cycle)
     {      
         $('#slideHomeEndermologie').cycle({
            fx: 'fade',
            speed: 1700,
            pager: '#nav',
            timeout: 4000
         });
     }
 
     /** Survol du titre qui fait apparait le block en dessous **/
     $(".openApplication").click(function()
     {
        var $container = $(this).parents("div").next(".applicationsContainer");         
        $container.slideDown(); 
        $(this).hide();
        $(this).next(".closeApplication").show(); 
     });
     
     /** fermeture de container texte **/
     $(".closeApplication").click(function()
     {    
         var $container = $(this).parents("div").next(".applicationsContainer");         
         $container.slideUp("fast");                  
         $(this).hide(); 
         $(this).prev('.openApplication').show(); 
     });
     
     
     /***
     // Coupe de peau action sur les texte et pointer
     /**************************************/
     $("div.CoupePeauPointer").hover(function()
     {          
        $("#img_coupe_de_peau").stop();
        $("#img_coupe_de_peau").animate({        
            opacity: 0.6 
        }, 500 );
        $(".CoupePeauPointer").hide();
        $(this).show();      
        $(this).addClass("pointerZoom");
        var id = $(this).attr("rel");        
        $("#peauText"+id).removeClass("CPOpac");  
        $("#txt"+id).fadeIn();        
     },function()
     {        
        $("#img_coupe_de_peau").animate({        
            opacity: 1 
        }, 0 ); 
        var id = $(this).attr("rel");
        $("#peauText"+id).addClass("CPOpac");
        $(this).removeClass("pointerZoom");
        $(".CoupePeauPointer").show(); 
        $("#coupe_de_peau .texteExplicatif").hide();
     });
     
     $("div.texteCoupePeau").hover(function()
     {
        $("#img_coupe_de_peau").stop(); 
        $("#img_coupe_de_peau").addClass("opactiyCoupe");
        $("#img_coupe_de_peau").animate({        
            opacity: 0.6 
        }, 500 );
        $(this).removeClass("CPOpac");
        var id = $(this).attr("rel"); 
        $(".CoupePeauPointer").hide();
        $("#pp"+id).show();         
        $("#pp"+id).addClass("pointerZoom");        
        $("#txt"+id).fadeIn();  
     },function()
     {          
        $("#img_coupe_de_peau").animate({        
            opacity: 1 
        }, 0 ); 
        $(this).addClass("CPOpac");
        var id = $(this).attr("rel");  
        $("#pp"+id).removeClass("pointerZoom");
        $(".CoupePeauPointer").show(); 
        $("#coupe_de_peau .texteExplicatif").hide();
     });
     
     
     
     
     
 
 
 });
