// JavaScript Document

function divChange (ID, callback, pageLocation) {
	$('.changing_div').hide();
	$(ID).fadeIn(1000, function(){callback;});
	if (pageLocation) document.location.href='#'+pageLocation;
}

function setImg (ID, imgPath) {
	$(ID).attr('src', imgPath);
}

function sitemap(){
	tb_show('Beachside Sitemap', '/sitemap.php?TB_iframe=true&height=450&width=300',null);
}
function contact(){
	document.location.href = "/about-beachside/contact.php";
	//tb_show('Beachside Contact', '/contact.php?TB_iframe=true&height=400&width=600',null);
}
function privacyPolicy(){
	tb_show('Beachside Privacy Policy', '/privacy-policy.html?TB_iframe=true&height=600&width=500',null);
}