<!--
var imagenumber = 10 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array;
images[1] = "masthead1.jpg";
images[2] = "masthead2.jpg";
images[3] = "masthead3.jpg";
images[4] = "masthead4.jpg";
images[5] = "masthead5.jpg";
images[6] = "masthead6.jpg";
images[7] = "masthead7.jpg";
images[8] = "masthead8.jpg";
images[9] = "masthead9.jpg";
images[10] = "masthead10.jpg";
var image = images[rand1];



document.write('<style type="text/css">');
document.write('#masthead');
document.write('{');
document.write('background: #a19d82 url("../images/design/' + image +'") top left no-repeat;');
document.write('}');
document.write('</style>');

// -->
