	
	function searchGetModels(id)
	{
		$.get("/scripts/search.php", { category: id }, function(data) {			
				
				$("#searchModel").html(data);
				
			}); 
	}
	
	function searchClick(productId, searchTerm)
	{
		$.post("/scripts/searchClick.php", { product: productId, term: searchTerm });
	}