/**
 * Поиск
 */

var search = {
		searchFuns: function(text) {
			var ts = new Date().getTime();
			$.getJSON('ajax/search?request=' + escape(encodeURIComponent(text)) +'&type=1', { data: ts }, function(data) {
				$.each(data, function(key, result) {
					$("#funList").append('<li>'+'<a '+'href=\"story'+result.id +'\" target = \"_blank\">' + result.head +'</a>'
							+'<br><b>Автор: </b>'
							+ '<a '+'href=\"profile'+result.authorId +'\" target = \"_blank\">' + result.author +'</a>'
							+ '<div class="result">' + result.textFound + '</div>'+'</li>');
				});
			});
			
		},

		searchPersons: function(text) {
			var ts = new Date().getTime();
			$.getJSON('ajax/search?request=' + escape(encodeURIComponent(text)) +'&type=2', { data: ts }, function(data) {
				$.each(data, function(key, result) {
					$("#personList").append('<li>'+'<a '+'href=\"profile'+result.id +'\" target = \"_blank\">' + result.head +'</a>'
							+ '<div class="result">' + result.textFound + '</div>'+'</li>');
				});
			});
	
		}
		
};
