function startSearch(text, page) {
    var what = text.toLowerCase();
    if(what.length > 3){
        if(page != '' && page == 0){
            page = 1;
        }
        $('#searchOutput').html('<br /><br /><div style="text-align: center;"><img src="images/spinna.gif" alt="Loading..." /></div>');
        
        $.ajax({
           type: "GET",
           url: '/ajax/searchAjax.php',
           data: ({
                    what: what,
                    page: page
                  }),
           success : showAjaxRightResults
        });
    }        
}


function showAjaxRightResults(xhr) {    
	$('#searchOutput').css('overflow-y', 'scroll');

    if(xhr != ""){        
        $('#searchOutput').html(xhr);
	}    
}
