function search(id) {

	var text = document.getElementById(id).value;
	if (text.length > 3) {
		$.ajax ({
			url : 't_components/ajax/standalone/AjaxSearch.php',
			type: 'post',
			data: 'characters='+text,
			success:function(html) {
				$('#searchPreview').fadeIn('slow');
				$('#searchPreview').html(html);		
			}
		});
	} 
	
}

function hideSearch(){
	$('#searchPreview').fadeOut('slow');
	
}
