var Images = new Array(
	"http://www.vamoose.com/html/global/images/header/lake_mntns_snow.jpg",
	"http://www.vamoose.com/html/global/images/header/forest_rd.jpg",
	"http://www.vamoose.com/html/global/images/header/skiers.jpg",
	"http://www.vamoose.com/html/global/images/header/flamingo.jpg",
	"http://www.vamoose.com/html/global/images/header/joshua_tree.jpg",
        "http://www.vamoose.com/html/global/images/header/catamaran.jpg",
        "http://www.vamoose.com/html/global/images/header/beach_sail.jpg",
        "http://www.vamoose.com/html/global/images/header/oregon.jpg",
        "http://www.vamoose.com/html/global/images/header/palmsprngs.jpg",
        "http://www.vamoose.com/html/global/images/header/sedona_az.jpg"
);
function loadRandomImg(){
	if(!document.getElementById('right-head'))
		setTimeout('loadRandomImg()',10);
	var randIndx = Math.floor(Math.random()*Images.length);
	document.getElementById('right-head').style.background = "url('"+Images[randIndx]+"')";
}
setTimeout('loadRandomImg()',10);
