
/*Random background color- by javascriptkit.com
Visit JavaScript Kit (http://javascriptkit.com) for script
Credit must stay intact for use*/

//Enter list of bgcolors:
var bgcolorlist=new Array("wheat", "wheat", "wheat", "wheat", "wheat", "wheat", "wheat", "wheat", "wheat", "wheat", "wheat", "wheat", "wheat")

document.bgColor=bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)]

//Enter list of fgcolors:
var fgcolorlist=new Array("222222", "222222", "222222", "222222", "222222", "222222", "222222", "222222", "222222", "222222", "222222", "222222", "222222")

document.fgColor=fgcolorlist[Math.floor(Math.random()*fgcolorlist.length)]

