<!--
function scrollQuotes() {
//ignore if stupid
if (!document.getElementsByTagName) {return null;}

//set up array for all divs
var divArray = document.getElementsByTagName("div");
//set up empty array for quote divs
var qtArray = new Array();

// go through divs for just quote texts
    for(var i=0; i < divArray.length; i++)
    {
	var whichdiv = divArray[i];
	var divclass = whichdiv.className;
	  if ( divclass == "exquote" )
      { 
        whichdiv.style.display = "none";
	qtArray[qtArray.length] = i;
	}
    }

//set variable to number of first div with quote
var begindiv = qtArray[0];
//show the first quote div
divArray[begindiv].style.display = "block";

//rewrite tags
var anc = document.getElementsByTagName("a");
//set variable to use as variable for link, start plus one
var addme = (begindiv+1);
//set max div variable
var maxdiv = ((begindiv+qtArray.length)-1);
for(var i=0; i < anc.length; i++)
	{
	var a = anc[i];
//change text for return to top tags
	if (a.href.indexOf("#top") != -1)
		{
		a.firstChild.nodeValue = "more \u00BB";
//change link reference for return to top tags to pass div id
		a.href = "javascript:swapQuote(" + addme + ");";
		if (addme<maxdiv) {addme++;} else {addme=begindiv;}
		}
	}
}

function swapQuote(what) {
var divA = document.getElementsByTagName("div");
for (i=0; i < divA.length; i++)
	{
	if (divA[i].className == "exquote") {
		divA[i].style.display = "none"
		}
	}
divA[what].style.display = "block";

}

window.onload = function()
//load up all the crazy stuff
  {
    scrollQuotes();
    loadContent();  
    }
-->
