jQuery(function(){
  // Cycle
  jQuery('.highlight-cycle').cycle({
    fx:   'fade',
    prev: '.highlight-prev',
    next: '.highlight-next',
    pause: 1,
    cleartype: 1
  });
  
  // Submenus
  jQuery('#menu li:has(ul)').hover(
    function(){
      jQuery(this).children('ul').show();
    },
    function(){
      jQuery(this).children('ul').hide();
    }
  );
  
  // Alterar os links das páginas mães para o primeiro filho
  jQuery('#menu li:has(ul)').each(function(){
    var child_link = jQuery(this).find('ul li:first a').attr('href');
    
    jQuery(this).find('a:first').attr('href', child_link);
  });
  
  // Zebra
  jQuery('#sidebar .widget ul').children('li:odd').addClass('odd');
  
  // Retirar a borda dos últimos lis
  jQuery('.column-left li:last, .column-right li:last').addClass('no-border');
  
});
