// FUNCIONES PARA EVENTOS DEL UI

/* Tablas con hover */
	$(function() {
		$("table.hoverable tbody tr").hover(
			function() {$(this).addClass("hover");},
			function() {$(this).removeClass("hover");}
		);
	});

