
/*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")

document.bgColor=bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)]
