$("document").ready(function(){
    $('#detailOffre, #autresServices article, #espaceClientButton, #detailsOffre').each(function(){
        var currentLink = $(this).children('a').attr('href');
        $(this).click(function(){
            location.href = currentLink;
        })
    })
    
    $('#autresServices article').each(function(){
        $(this).hover(
            function(){
                $('#autresServices article').not(this).animate({opacity:0.4},0)
            },
            function(){
                $('#autresServices article').not(this).animate({opacity:1},0)
            }
        )
    })
    
    $("#mainMenu ul li").hover(
        function(){
            $(this).children('ul').slideDown('fast');
        },
        function(){
            $(this).children('ul').slideUp('fast');
        }
    )
    
    $('#presentationDirection article').hover(
    	function(){
    		$(this).children('#detailSurvol').slideToggle(0);
    	}
    )
    
    
    $('#infos h5 a').click(function(e){
        e.preventDefault();
        $(this).parent().next('#slide').slideToggle('fast');
        
    })
    
/*    $('#espaceClientButton a').click(function(e){
        e.preventDefault();
       $(this).parent().next('#espaceClientForm').slideToggle(0);
    })
*/    
})


