// Scrollbar
$(document).ready(function () {
	$('.zoneScrollMoyen, .zoneScrollGrand').jScrollPane(
		{
			showArrows: true,
			verticalDragMinHeight: 33,
			verticalDragMaxHeight: 33,
			horizontalDragMinWidth: 20,
			horizontalDragMaxWidth: 20
		}
	);
});

// Typo
Cufon.replace('.titreBloc, .titreMenu', { fontFamily: 'futura' });

// Menu
$(document).ready(function () {
	$("#nav").lavaLamp({
		fx: "easeOutQuad",
		speed: 700,
		click: function(event, menuItem) {
			return false;
		}
	});
	$("#nav > li:has(a)").click(function(){
		document.location.href = $(this).children("a").attr("href");
	});
});

// Onglets fiche
$(document).ready(function() {
	$(".tab_content").hide();
	$("ul.tabs li:first").addClass("active").show();
	$(".tab_content:first").show();
	
	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide();
		var activeTab = $(this).find("a").attr("href");
		$(activeTab).fadeIn();
		return false;
	});
});
