$(document).ready(function() {

	$('#searchForm input[name="keywords"]').liveSearch({
			url: '../ajax_response/search_products.php?q=',
			id: 'jquery-live-search'
			});

	$('#AdvancedSearchForm input[name="keywords"]').liveSearch({
			url: '../ajax_response/search_products.php?q=',
			id: 'jquery-live-search'
			});

	$("button[name=search_button]").click(function(){
		 getResults();
		 });
});


function deleteSearchResults(){
	$.get("../ajax_response/search_products.php",{
		q: $("#searchbox").val(), 
		action: "delete_results"
	   });
}


function getResults(){
	$.get("../ajax_response/search_products.php",{
		query: $("#searchbox").val(), 
		type: "results"},
//		pIDaz: <?php echo $_GET['pID'] ?>}, 
		function(data){
		$(".ac-hd").html(data);
		$(".ac-hd").show("blind");
		});
}
