// toggle property map$(document).ready(function () {	$('#mapbox').hide();	$('#mapit').click(function () {		$('#mapbox').toggle();		googleMapLoad();	})});// confirm registration terms$(document).ready(function () {	$('#createaccount').click(function () {		if ($('#agreetoterms:checked').val() == null) {			alert ("MUST AGREE TO TERMS\nTo complete your registration you must read and agree to terms.");			return false;		}	})});// initialise Superfish jQuery(function(){	jQuery('ul.sf-menu').superfish();});