var banner= new Array()
var color= new Array()
banner[0]="/images/background1.jpg";
banner[1]="/images/background2.jpg";
banner[2]="/images/background3.jpg";
color[0]="#BBAC8B";
color[1]="#7A8B85";
color[2]="#ADC8DA";
var ndx=Math.floor(3*Math.random());
document.write('<style>');
document.write('body {');
document.write('min-height: 101%;');
document.write('background-color: ' + color[ndx] + ';');
document.write('background-image: url( "' + banner[ndx] + '");');
document.write('background-repeat: no-repeat;');
document.write('background-attachment: fixed;');
document.write('margin:0;padding:0;');
document.write("font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;");
document.write('font-size: 0.85em;');
document.write(' }');
document.write('</style>');
