	jQuery(document).ready(function() {
		<!--
		// Function that return a number between 0 and "nums - 1"
		function getRandom(nums)
		{
			var ranNum= Math.round(Math.random()*nums);
			return ranNum;
		}
			
		// Create an array to hold the names of all images.
		var imgs = [
			"images-wl/collage-002.png",
			"images-wl/collage-003.png",
			"images-wl/collage-004.png",
			"images-wl/collage-005.png"
		];
		
		$("#collage img").attr("src", imgs[getRandom(imgs.length)]);
	});
		
	-->