//---------------------------------------------------------
//
// Property Searching
//
//---------------------------------------------------------

function showData(start, amount, where, order, dir, data) {
	$.get("/includes/propsearch/getData.php", {start: start, amount: amount, where: where, order: order, dir: dir, data: data}, function(searchData) {
	
		var temp = searchData.split("$$$");		
		$("#tabledata").html(temp[0]);
		$("#tableinfo").html(temp[1]);
		$("#sortmenu").html(temp[2]);
		$("#pagelinks").html(temp[3]);
		$("#pagelinks2").html(temp[3]);
		
		try {
			if(document.documentElement && document.documentElement.scrollTop) {
				document.documentElement.scrollTop = 0;
			}
			else if (document.body) {
				document.body.scrollTop = 0;
			}
		}
		catch(e){}
		
		Cufon.replace('h1,h2,h4,h3,#mainNav li.img a','.iCol.copy h1');
	});
}


//------------------------------------------------------
//
// Add to short list
//
//------------------------------------------------------

function addToShortlist(propref) {
	$.get("/includes/addtoshortlist.php", {prop: propref}, function() {
		alert("Added to shortlist");
	});
}

function removeFromShortlist(propref) {
	$.get("/includes/removefromshortlist.php", {prop: propref}, function() {
		alert("Removed from shortlist");
	});
}
