function loadHeadPicture() {
		images = new Array();
		images[1] = "<img src='img/header/flower.jpg' alt='' />";
		images[2] = "<img src='img/header/sunset.jpg' alt='' />";
		images[3] = "<img src='img/header/town.jpg' alt='' />";
		images[4] = "<img src='img/header/water.jpg' alt='' />";
		images[5] = "<img src='img/header/header_beach.jpg' alt='' />";
		images[6] = "<img src='img/header/header_beach2.jpg' alt='' />";
		images[7] = "<img src='img/header/header_beach3.jpg' alt='' />";
		images[8] = "<img src='img/header/green_bush.jpg' alt='' />";
		images[9] = "<img src='img/header/hibiskus.jpg' alt='' />";
		images[10] = "<img src='img/header/clouds.jpg' alt='' />";
		imageNmbr = 10;
		randomNmbr = Math.random();
		randNmbr1 = Math.round((imageNmbr-1) * randomNmbr) + 1;
		randomImage = images[randNmbr1];
		document.getElementById('head').innerHTML = randomImage;
}
