$(document).ready(function() {
	
	//###############################################
	// Ajout des Tooltips dans le Menu
	//###############################################
	$('#brdmenu li a').each(function() {
		$(this).attr( 'title' , $(this).html() );
	});

	
	if($.browser.msie && $.browser.version<5) return;

	//###############################################
	// Magnifier sur les boutons Auteurs
	//###############################################
	//$("#punindex table .tcl .tclcon").magnifier({overlap: true});	
	$("#magnifier").magnifier( {
		items			: "img",
		overlap		: true,
		distance	: 100,
		//opacity		: { min: 0.8, max: 1.0 },
		magnification	: 1.5
	} );
	    
	
	
	//###############################################
	// Création des Onglets
	//###############################################
	$('.blocktable:first').before("<ul id='zoneOnglets'></ul>");
	$('.blocktable').each(function() {
		sTitre = $('h2 > span',this).html();
		sIdZone = $(this).attr('id');
		sListItem = "<li><a href='#" + sIdZone + "'><span>" + sTitre + "</span></a></li>";
		$('#zoneOnglets').append(sListItem);
	});
	
	// Activation des Onglets
	$('#zoneOnglets').tabs();

});