window.addEventListener?window.addEventListener("load",randHomeImg,false):window.attachEvent("onload",randHomeImg);

$(function() {
imgs = 6; //Set the total number of image to pick from

rand = 1 + Math.floor(Math.random() * imgs)

target = "url(/styles/images/bg_content_nature"+ rand +".gif)";

if (document.getElementById ('tools_container')) {
	document.getElementById ('tools_container').style.backgroundImage = target;
}
else if (document.getElementById('col2')) {
	document.getElementById ('col2').style.backgroundImage = target;
}
});



function randHomeImg() {
	if ($("#home_logo").is("h1")) {
		imgs2 = 8; //Set the total number of images to pick from
		
		rand2 = 1 + Math.floor(Math.random() * imgs2)
		
		//by default pictures have to be named home_header#.jpg
		//the name can be changed below
		
		target2 = "/images/Home/LargeHeaderPhoto"+ rand2 +".jpg";
		
		$("#header").children("span").css("background-image", "url("+target2+")");
	}
	return false;
}
 
