<!--

/*Based on: "Random background color- by javascriptkit.com
Visit JavaScript Kit (http://javascriptkit.com) for script"*/

//Enter list of linkColors:
var linkColorlist=new Array
("#996699", "#996666", "#993333", "#00CC66", "#009999", "#006666", "#006633")

document.linkColor=linkColorlist[Math.floor(Math.random()*linkColorlist.length)]

//Enter list of vlinkColors:
var vlinkColorlist=new Array("#996699", "#996666", "#993333", "#00CC66", "#009999", "#006666", "#006633")

document.vlinkColor=vlinkColorlist[Math.floor(Math.random()*vlinkColorlist.length)]

//Enter list of fgColors:
var fgColorlist=new Array("#996699", "#996666", "#993333", "#00CC66", "#009999", "#006666", "#006633")

document.fgColor=fgColorlist[Math.floor(Math.random()*fgColorlist.length)]

//-->
