
/**************************************************************
 *
 * SEARCH FUNCTIONS
 *
 **************************************************************/

$(function() {
    $('#search').live('keyup',
    function() {
    	var term = $.trim(this.value);
        $('#flyTable').load('index.cfm #flyTable', {search: term});
  
    }); 
});