$(document).ready(function(){
	$("ul.onglet a").click(function(e) {
		e.preventDefault();
		// Hover onglet
		$("ul.onglet a").parent().removeClass("selected");
		$(this).parent().addClass("selected");
		
		// Affichage du contenu
		$("div.info div.onglet").hide();
		var i = $(this).parent().index();
		$(this).parent().parent().parent().find("div.onglet:eq("+i+")").show();
	});
	
	$('a.zoom').fancybox();
	
	$('a.equipe').fancybox({
		'width': 400,
		'height': 400,
		'autoDimensions': false
	});
	
	/*
	$(".tip" ).each(function() {
		html = $(this).html()
		$(this).mTip({
			content	: html,
			spacing	: 0,
			align	: 'top'
		});
	});
	
*/	
	$(".tip" ).tooltip({
		position: "top center",
		relative: true
	});
	

	/*
	$(".tip" ).each(function() {
		html = $(this).html()
		$(this).tipsy({
			fallback: html,
			html: true
		});
	});
	*/
});
