$(document).ready(function(){

	$('.lightbox').lightBox();
	
	checkSousMenuVide();
	whoswho();
	// $('.nyroModal').nyroModal();
	$('.tip').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		showBody: " - ",
		extraClass: "right", 
		left : -300, 
		fade: 250, 
		bodyHandler: function() { 
			return $(this).next('.textTooltipC').html(); 
	}
	});
});

function whoswho(){
	$('#listServices>li>a.insideMenu2').click(function(){
		$(this).parent('li').find('.sousServices').toggle("fast");
		// alert('toogle'+$(this).parent('li').find('.sousServices').length);
	});
}

function checkSousMenuVide(){
	if ($('#contenuMenu ul').find('li').length == 0){
		$('#menuGauche').hide();
	
	}

}
