$('document').ready(function() {
			 
	$('.searchCategories').keyup(function(){ 
		if($(this).val()==''){
			$.post("/includes/categories.ajax.php",function(data){ $('#pane1').html(data) });	
		}else{
			getCategories($(this).val());
		}
	})
	
	function getCategories(keyword){ 
		$.ajax({
			url: "/includes/get.categories.ajax.php?keyword="+keyword,
			cache: false,
			dataType: 'json',
			success: function(result){
				$('#pane1').html('');
				getResults(result); 
			}
		});	
	}
	
	function getResults(data){
		var totalNumbers = data.Categories.length;
	
		for(d=0; d < totalNumbers; d++){
			$('#pane1').append('<a href="search.php?category='+data.Categories[d][0]+'"><p class="menu_head"><span style="color:#FF0000;"><span style="font-size:16px;margin-left:1px;padding-right:1px">-</span></span><strong> '+data.Categories[d][1]+'</strong></p></a> \n <div class="menu_body">');
		}	
	}
	
});

