<!--
var BGImgAry=new Array('TheGalaxicSiteBG.png');
function BG(){
R=Math.floor(Math.random()*1)%BGImgAry.length
BG=document.getElementsByTagName('BODY')[0];
BG.style.backgroundImage="url('http://images.wcetdesigns.com/backgrounds/"+BGImgAry[R]+"')";
BG.style.backgroundRepeat='repeat';
BG.style.backgroundAttachment='fixed';
BG.style.backgroundPosition='top center';
}
//-->
