/*$(document).ready(function(){
    $(".liMenuSeccion").hover(function (){
      $(this).corner("top 7px");
      $(this).css('background-color','#FFF');
      $(this).children('a').css('color','#000');
    },function(){
      $(this).css('background-color','transparent');
      $(this).children('a').css('color','#FFF');
    });
    $("#current").corner("top 7px");
    $("#current").css('background-color','transparent');
    $("#current").css('font-weight','bold');
    $("#current").css('font-size','13px');
    $("#current").children('a').css('color','#000');
  });
*/
$(document).ready(function(){
    $(".abecedario ul li").hover(function (){
      $(this).corner("top 7px");
      $(this).css('background-color','#FFF');
      $(this).children('a').css('color','#000');
    },function(){
      $(this).css('background-color','#000');
      $(this).children('a').css('color','#FFF');
    });
    $("#currentEquipos").corner("top 7px");
    $("#currentEquipos").css('background-color','#FFF');
    $("#currentEquipos").css('font-weight','bold');
    $("#currentEquipos").css('font-size','13px');
    $("#currentEquipos").children('a').css('color','#000');
  });

