//Scripts communs

jQuery.noConflict()

// Appel à JQuery-1.3.2 
jQuery(document).ready(function(){
    // Ajouter une classe alternative pour les rangées impaires de tableau de contenu (typo3)
	if ( jQuery("table").length ){
	  jQuery("table").each(function() {
	    /*if (jQuery(this).is('table') && jQuery(this).find('thead').length == 0) {
              // No 'thead' section
              jQuery(this).prepend("<thead></thead>"); // add thead
              jQuery(this).find('tbody tr:first').remove().appendTo(jQuery(this).find('thead') ); // remove first row from tbody, add it to thead
            }*/
            jQuery(this).find("tbody > tr:odd").addClass("odd");
	  });
	}
});

