onTabHover.js 232 Bytes
jQuery(document).ready(function($){
	$('table').each(function() {
		// Si il y a plus de 4 lignes dans le tableau on les surligne au survol, sinon c'est moche
		if (this.rows.length > 4) {
			$(this).addClass('survol');
		}
	});
});