$(document).ready(function (){
	$("#discos").tablesorter({
	headers:{
		6:{sorter:false}
	}
	}); 

	$("#fresas").tablesorter({
	headers:{
		7:{sorter:false}
	}
	});
	
	$("#fresolines").tablesorter({
	headers:{
		6:{sorter:false}
	}
	}); 

	$('.tabla-herramientas tr').hover(
		function() {
			$clase = $(this).attr("class")
			if($clase != ""){			
				$(this).removeClass($clase);				
				$(this).addClass("activa");
			}
		}, 
	  	function() { 
			$(this).removeClass("activa");
			$(this).addClass($clase); 

		; } 
	);

});
