// toggle property map$(document).ready(function () {	$('#mapbox').hide();	$('.mapit').click(function () {		$('#mapbox').toggle();		googleMapLoad();	})});// toggle property calc$(document).ready(function () {	$('#calcbox').hide();	$('.calcit').click(function () {		$('#calcbox').toggle();		reCalcPmt(document.forms['frmMortCalc'],true);	})});// toggle property virtual tour$(document).ready(function () {	$('#virtualbox').hide();	$('.viewtour').click(function () {		$('#virtualbox').toggle();	})});// 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;		}	})});$(function(){     // find all the input elements with title attributes	$('input[title!=""]').hint();});// initialise Superfish jQuery(function(){	jQuery('ul.sf-menu').superfish();});