<!--

//Random Background

var imglist = new Array(
	"/wp-content/themes/default-empty/bg.jpg");
var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
var output = "<img id='background' name='background' src=" + imglist[selectnum] + " alt='Galactic' />";
document.write(output);

// -->