function swapPic() {
	// Bail if really old browser
	if (!document.getElementById) return false;
	var container = document.getElementById("quoteHolder");
	var quotePic = document.getElementById("quotePic");
	var newPic = document.createElement("img");
	var randPic = (Math.round(Math.random()*2) + 1);
	newPic.setAttribute("src", "/main/gfx/home-quote_0" + randPic + "\.gif");
	newPic.setAttribute("width", "473");
	newPic.setAttribute("height", "112");
	newPic.setAttribute("border", "0");
	container.replaceChild(newPic, quotePic);
};

window.onload = swapPic;
