$(document).ready(function () {

  $(".toggleSearch").click(function () {
	$("#searchMid").slideToggle("slow");
  });

  $("#postcode").focus(function () {
	if (this.value == 'Enter your address') {
		this.value = '';
	}
  });

  $("#postcode").blur(function () {
	if (this.value == '') {
		this.value = 'Enter your address';
	}
  });

  $(".togglePerson").click(function () {
  	var p = this.name;
	$("#"+this.name).slideToggle();
  });
  
});

function directions() {
 var pcode = document.getElementById('postcode').value;
 if (pcode != '' && pcode != 'Enter your address') {
  window.open("directions.php?&postcode="+pcode,"directions","width=500,height=700,scrollbars=1");
 } else {
  window.alert("Please enter your address");
 }
}