// JavaScript Document

var bgNum = Math.round(Math.random() * 8)
bgSel = new Array(9);
bgSel[0] = "wp-content/themes/fgm/img/bg.gif";
bgSel[1] = "wp-content/themes/fgm/img/bg1.gif";
bgSel[2] = "wp-content/themes/fgm/img/bg2.gif";
bgSel[3] = "wp-content/themes/fgm/img/bg3.gif";
bgSel[4] = "wp-content/themes/fgm/img/bg4.gif";
bgSel[5] = "wp-content/themes/fgm/img/bg5.gif";
bgSel[6] = "wp-content/themes/fgm/img/bg6.gif";
bgSel[7] = "wp-content/themes/fgm/img/bg7.gif";
bgSel[8] = "wp-content/themes/fgm/img/bg8.gif";
var base = bgSel[bgNum];
document.write("<BODY BACKGROUND='" + base + "'>");