var curdiv = "homecontent1";
var spaninit = "false";
var whichspan;
var lastbtn;
var lastspan;

function switcher(whichdiv, whichbtn) {
	if(whichdiv != curdiv) {
		if(spaninit=="true") {
			document.getElementById(lastspan).style.display="none";
			document.getElementById(lastbtn).style.background = "#4f0d0d";
			document.getElementById(lastbtn).style.color = "#e7c4c4";
		}
		whichspan = whichbtn + "span";
		document.getElementById(whichdiv).style.display="block";
		document.getElementById(whichspan).style.display="block";
		document.getElementById(whichbtn).style.background = "url('http://www.addvida.com/images/btnbg2.png') top repeat-x #3b0a0a";
		document.getElementById(whichbtn).style.color = "#ac4949";
		document.getElementById(curdiv).style.display="none";
		curdiv = whichdiv;
		lastbtn = whichbtn;
		lastspan = whichspan;
		spaninit = "true";
	}
}

function checkplantseed() {
	var url = window.location.href;
	if(url.indexOf("contacted") != -1) {
		document.getElementById("plantseed").innerHTML="Thank you. We will be watering the seed shortly.";
	}
}

function checkpulse() {
	var url = window.location.href;
	if(url.indexOf("pulsed") != -1) {
		document.getElementById("pulsecopy").innerHTML="Thanks for signing up!<br /> We hope that you enjoy the newsletter.";
	}
}

function guidedTour(myheight, mywidth){
 var x = (screen.availWidth / 2) - (mywidth / 2);
 var y = ((screen.availHeight - 60) / 2) - (myheight / 2);
 window.open("guidedTour1.php","", "height=" + myheight +", width="+ mywidth + ", left="+ x + " , top=" + y +", scrollbars=no");
 //window.alert(x + "  " + y);
 }