$(document).ready(function(){
	$("div.onglet_view:not(:first)").hide();
	$currTab = $("div.onglet_view:first");
	$(".navOnglets").find("a:first").css("text-decoration","none");
	$(".navOnglets").find("a").click(function(event){
		event.preventDefault();
		$currTab.hide();
		$(".navOnglets").find("a[style]").removeAttr("style");
		$(this).css("text-decoration","none");
		$currTab = $("div.onglet_view[id='"+$(this).attr('rel')+"']");
		$currTab.show();
	});
});