// JavaScript Document (jQuery)

$(document).ready(function() {
   getContentByCity('ALL','Portugal');
});

function getContentByCity(city, country) {
	var dataString = 'p='+city+'&q='+country;
	$.ajax({
	  type: "POST",
	  url: "get-content.php",
	  data: dataString,
	  success: function(content){
		$("#properties").html(content);
	  }
	});
	return false;
}

function toggleDisplay(propID) {
	var thisEl = document.getElementById('img-'+propID);
	thisEl.style.display = (thisEl.style.display == 'block') ? 'none' : 'block';
	return false;
}
