/*****************************************
	Copyright (c) - 2008 Harbor Moon Design
	Author - Jonathan Henson
	Website - www.harbormoondesign.com
*****************************************/
function showHideDiv(theDivsToShow,theDivsToHide) {
	var showDivArray = theDivsToShow.split("*");
	for (arrayIndex in showDivArray) {
		var showdiv = document.getElementById(showDivArray[arrayIndex]);
		showdiv.style.display = "block";
	}
	var hideDivArray = theDivsToHide.split("*");
	for (arrayIndex in hideDivArray) {
		var hidediv = document.getElementById(hideDivArray[arrayIndex]);
		hidediv.style.display = "none";
	}
}

randomBanner = new Array("media/header.jpg","media/header2.jpg","media/header3.jpg")imgCt = randomBanner.length 		function choosePic() {	if (document.images) {		randomNum = Math.floor((Math.random() * imgCt))		document.randombanner.src = randomBanner[randomNum]	}}

function validateForm() {
	
}