 $(document).ready(function(){
 
 	$("td.report_nom a").tooltip({
	 	bodyHandler: function() { 
	        return $(this).next("div").html(); 
	    }, 
	    showURL: false,
	    extraClass: "tip_width1"
 	});
 	
 	/// POUR LE TABLEAU
	var classNames = {
	    0: 'first',
	    1: 'second'
	  };
	  $('table.striped tbody tr').not('[th]').each(function(index) {
	    $(this).addClass(classNames[index % 2]);
	  });
	
 });