 /*
 * Estilo da tabela da FECABOXE, autoria de Rocha & Borges
 *
 * Versão: 1.0
 *
 * Copyright (c) 2011 - Rocha & Borges
 * http://www.rochaeborges.com
 */
 
    $(function(){
      
      $('table > tbody > tr:odd').addClass('odd');
      
      $('table > tbody > tr').hover(function(){
        $(this).toggleClass('hover');
      });
      
      $('table > tbody > tr > td > :checkbox').bind('click change', function(){
        var tr = $(this).parent().parent();
        if($(this).is(':checked')) $(tr).addClass('selected');
        else $(tr).removeClass('selected');
      });
      
    });
