jQuery.noConflict();

jQuery(document).ready(function(){

	jQuery("h3.onglet").click(function () {
		jQuery("div.part").removeClass("courant");
		jQuery(this).parent("div.part").addClass("courant");
		jQuery('ul.bonglets li').removeClass("courant");
		jQuery('#b'+(jQuery(this).attr("id"))).addClass("courant");
	});
	
	jQuery("ul.onglets > li:first").addClass('courant');
	jQuery("ul.onglets > li:first").show();
	
	jQuery("ul.onglets li h3").click(function () {
		jQuery("ul.onglets > li").removeClass("courant");
		jQuery("ul.onglets > li div.content_item").hide();
		jQuery(this).parents("li").addClass("courant");
		//$(this).parents("li").show();
		jQuery(this).parents("li").slideDown();
		jQuery("ul.onglets li.courant div.content_item").show();
    });
	

});

