

var aPreface = new Array();
var aColor = new Array();
var aSubtitles = new Array();

aColor = ["#990033", "#1b0c80", "#336633", "#650981", "#000000" , "#CC6600", "#306799", "#C98B3F"];


function setStyle() {

    var sColor = "";
    var iColorIndex = 0;
    var ePageByline;

    iColorIndex  = document.getElementById("colorindex").value;
    iColorIndex = parseInt(iColorIndex);
    sColor = aColor[iColorIndex];   
	document.getElementById("submenunav").style.backgroundColor = sColor;
	document.getElementById("submenufill").style.backgroundColor = sColor;


    /*
	ePageByline = document.getElementById("pagebylinecell");
    type = typeof ePageByLine;
    //alert("type of ePageByLine = " + type);
    if (type != "undefined") {ePageByLine.style.color = sColor;}
    */

    // more than one
    aSubtitles = document.getElementsByName("subtitle");
    for (i=0; i<aSubtitles.length;i++) {
        aSubtitles[i].style.color = sColor;

    }
        


}

function initPage() {

	setStyle();

}

/*
window.onload = initPage();
*/