$(document).ready(function(){
	$("#switch_onglets .content_onglet").hide();
	$("#switch_onglets .content_onglet:eq(0)").show();
						   
	$("#switch_onglets ul a").click(function(){
		/*$('"#switch_onglets ul li a').removeClass('on'); */
		$('"#switch_onglets ul li a').removeClass('ma_active');
		$(this).addClass('ma_active');
		$("#switch_onglets .content_onglet").hide();
		$(this.hash).show();
		this.blur();
		return false;
	});
	
	/* Navigation */
	st1 = new Object();
		if($(this).parent().parent().parent().is("div") == true) {
		}  


	$("#switch_onglets2 .content_onglet2").hide();
	/*$("#switch_onglets2 .content_onglet2:eq(1)").show();*/
	$(".switch_onglets-open-0 .content_onglet2:eq(0)").show();
	$(".switch_onglets-open-1 .content_onglet2:eq(1)").show();
	$(".switch_onglets-open-2 .content_onglet2:eq(2)").show();
	$("#switch_onglets2 ul a").click(function(){
		$('"#switch_onglets2 ul li a').removeClass('ma_active');
		$(this).addClass('ma_active');
		$("#switch_onglets2 .content_onglet2").hide();
		$(this.hash).show();
		this.blur();
		return false;
	});
  
  
	/* Navigation */
	st1 = new Object();
		if($(this).parent().parent().parent().is("div") == true) {
		}

})


