jQuery.noConflict();

jQuery(document).ready(function() {


jQuery(function(){ jQuery("ul#ticker01").liScroll({travelocity: 0.07}); }); 

jQuery(function() { 
  var theTable = jQuery('table.add_mad')

  theTable.find("tbody > tr").find("td:eq(1)").mousedown(function(){
    jQuery(this).prev().find(":checkbox").click()
  });

  jQuery("#filter").keyup(function() {
    jQuery.uiTableFilter( theTable, this.value );
  })

  jQuery('#filter-form').submit(function(){
    theTable.find("tbody > tr:visible > td:eq(1)").mousedown();
    return false;
  }).focus(); //Give focus to input field
});  



  });
