if (window.addEventListener) { window.addEventListener("load", setup_switcher, false); }
else if (window.attachEvent) { window.attachEvent("onload", setup_switcher, false); }

var oTitle 	= false;
var oCopy	= false;
var oQuote	= false;
var oImg1	= false;

var oHoldingPen	= false;

function setup_switcher() {
	oTitle	= document.getElementById("contentTitle");
	oCopy	= document.getElementById("contentCopy");
	oQuote	= document.getElementById("contentQuote");
	oImg1	= document.getElementById("contentImg1");
	oHoldingPen = document.getElementById("holdingPen");
	
	oHoldingPen.style.display	= "none";
	
	switchContent(0);
}

function switchContent(iSection) {
	thisSection	= oHoldingPen.getElementsByTagName("div")[iSection];
	thisTitle	= thisSection.getElementsByTagName("h1")[0];
	thisCopy	= thisSection.getElementsByTagName("p")[0];
	thisQuote	= thisSection.getElementsByTagName("p")[1];
	thisImg1	= thisSection.getElementsByTagName("img")[0];
	
	oTitle.innerHTML	= thisTitle.innerHTML;
	oCopy.innerHTML		= thisCopy.innerHTML;
	oQuote.innerHTML	= thisQuote.innerHTML;
	oImg1.src			= thisImg1.src;
}