jQuery.noConflict();
(function($)
{
	$(document).ready(function()
	{
		var actif		   = new Array();
				$('.onglet_menu > a:first').attr('class','onglet_active');
				_actif = $('.onglet_menu > a:first').attr('href');
				$(_actif).show();
				$('.onglet_menu').children('a').each(function()
				{
					$(this).hover(function(){if($(this).attr('class')==''){$(this).addClass('onglet_hover');}},function(){$(this).removeClass('onglet_hover');});
					
					$(this).click(function()
					{
						_is_show = $(this).attr('href');
						if($(_is_show).css('display')!='block')
						{
							//$($('a.onglet_active').attr('href')).hide("normal");
							$($('a.onglet_active').attr('href')).css("display","none");
							$('a.onglet_active').removeClass('onglet_active');
							
							$(this).removeAttr('class').addClass('onglet_active');
							$($('a.onglet_active').attr('href')).css("display","block");
							//$($(this).attr('href')).show();
							return false;
						}
					});
				});
		
	});
})(jQuery)

