//common scripts
var theImages = new Array() 
theImages[0] = 'locations/bauble.jpg';
theImages[1] = 'locations/reindeer.jpg';


var p = theImages.length;
var rndImage = Math.round(Math.random()*(p-1));
var preLoad = new Image()
    preLoad.src = theImages[rndImage]

function showImage(){
//document.write('<img src="'+theImages[rndImage]+'">');
document.write('<style type="text/css">#noflash{background-image:url('+theImages[rndImage]+')}</style>');
}

// -->

