// JavaScript Document

function doPageTracking(refer_in) {
	$.post(
		   
		   	"feeds/track_this.php",
		   { url: window.location.pathname,
		   refer: refer_in},
		   
		   function (data) {
		   
		   },
		   "html"
		   )	
}

function doSearchTracking(type, min_price, max_price, vehicle_type) {
	$.post(
		   
		   	"feeds/track_search.php",
		   { type: type,
		     min_price: min_price,
			 max_price: max_price,
			 vehicle_type: vehicle_type
		   },
		   
		   function (data) {
		   },
		   "html"
		   )	
}
