$(document).ready(function() {
	
		// BACKGROUND RANDOMISER
		// Change GenerateNumber(1) to how ever many number of background images are available to be randomised.
		// Make sure banners are named: content_header1.jpg, content_header2.jpg, etc and are placed in the 'temp' folder.
		$("body.content #bodyContainer.background").css("background", "url(temp/content_header"+GenerateNumber(9)+".jpg) no-repeat center top");

		//1 to max
		function GenerateNumber(max) {
			return Math.floor(Math.random()*max) + 1;
		}
	 
});
