// JavaScript Document

function showNavBack (e) {
	document.getElementById(e.id + "_back").className = "navBackOver";
}
function hideNavBack (e) {
	document.getElementById(e.id + "_back").className = "navBack";
}
function goHome () {
	document.location = "/";
}
	


function changePage (p) {
	document.location = p;
}	

function getGmap() {
	var loc = "http://maps.google.com/maps?f=q&hl=en&geocode=&time=&date=&ttype=&q=1221+Turner+Street,+lansing+mi&sll=37.0625,-95.677068&sspn=38.008397,64.599609&ie=UTF8&ll=42.748068,-84.549623&spn=0.008619,0.015771&z=16&iwloc=addr&om=1";

	var popWidth = 800;
	var popHeight = 600;
	var newWindow = window.open(loc, "popup", "top=0,left=0,status=1,resizable=1,toolbar=1,scrollbars=01,width=" + popWidth + ",height=" + popHeight);
	

}

function swapPhoto (e) {
	var grey = document.getElementById(e.id + "BW");
	if (grey.className == "hiddenPic"){
		grey.className = "visPic";
	}else{
		grey.className = "hiddenPic";
	};
}	

var bios = ["bioFaith", "bioKaryn", "bioLaveda", "bioJessica", "bioDeanna", "bioJayne", "bioJoanna", "bioMarie", "bioKaylle", "bioJordyn", "bioAmy"];

var cBio = bios[0];

function changeBio (num) {
	document.getElementById(cBio).className = "bioHidden";
	document.getElementById(bios[num]).className = "bio";
	cBio = bios[num];
}

