eCSStender.ignore(['type.css','print.css','color.css','jquery.lightbox-0.5.css']);

$(document).ready(function(){

  // TABLE behaviors
  // selectable rows
  $('table.selectable-rows').each(function(){
    $(this).find('tr :checkbox').change(function(){
      $(this).parents('tr').toggleClass('selected');
    });
  });
  // sortable columns
  if( $('table.sortable-columns').length > 0 )
  {
    $('table.sortable-columns').parent().click(function(e){
      var $el = $(e.target);
      if ( $el.is('a.colsort') )
      {
        e.preventDefault();
        window.location.hash = $el.attr('href').replace( /.*\/(.*?)$/, '$1' );
        $(this).load( $el.attr('href') );
      }
    });
  }
});
