function offsite() {
	return confirm("You are now leaving the Gideon's Harbour website. \nWe are not responsible for the content of the following\nwebsite and we accept no liability for it or any reliance\nyou may place upon it. The link to the third party website\nis for you convienience only and is accessed at your own risk.");	
}

function toggleMenu(id) {

	if(document.getElementById(id).style.display!='block') {
		document.getElementById(id).style.display = 'block';
	}
	else {
		document.getElementById(id).style.display = 'none';
	}
	
	return false;
}