$(function() {	$("#search_go").live("keyup", function(event) {		var text = $(this).val();		var data = {"text":text};		if (text != "")			{			$('#main_content').hide();			$('#search_content').show();			$.ajax({				type: "POST",				data: data,				url: "/metas/plugin/search/php/connector/search.php",				beforeSend: function(){				$(".ajaxload").css("display","block");				},				success: function(answer){				$(".ajaxload").css("display","none");				$("#search_content").html(answer);				}			});			} else			{			$('#search_content').hide();			$('#main_content').show();			}	});});
