 $(document).ready(function() {
		 /* EXPLORAR Y BÚSQUEDA RÁPIDA */
	 	 $("#botones div").mouseover(function() { $(this).addClass("over"); });
		 $("#botones div").mouseout(function() { $(this).removeClass("over"); });
		 /* INDICE */
	 	 $("#indice div").mouseover(function() { $(this).addClass("over"); });
		 $("#indice div").mouseout(function() { $(this).removeClass("over"); });
		 
		 /* COLUMNAS */
		 $("#btn_registrate").mouseover(function() { $(this).addClass("over"); });
		 $("#btn_registrate").mouseout(function() { $(this).removeClass("over"); });
		 $("#btn_quiero").mouseover(function() { $(this).addClass("over"); });
		 $("#btn_quiero").mouseout(function() { $(this).removeClass("over"); });
		 
 }); // document.ready