/* ProMoozz.org
	randomHomePic(id)
	Shows random picture in a given DIV-element

	id: IDname of the DIV-element
	bg: boolean whether the picture is shown as background-image or as new image.
*/
function randomHomePic(id) {
	if( (document.getElementById( id ) )!=null)
	{
		var img_name = new Array('home01.jpg', 'home03.jpg', 'home02.jpg', 'home04.jpg', 'home05.jpg', 'home01.jpg');  
		var url = new Array('24/Opleidingen/Volg-een-cursus-Eerste-Hulp.html', '17/Internationale-werking/Internationale-werking.html', '19/Projecten-en-diensten/Jeugd-Rode-Kruis.html', '7/Hulpverlening/Hulppost-op-uw-evenement.html', '35/Projecten-en-diensten/Opvang-daklozen.html', '24/Opleidingen/Volg-een-cursus-Eerste-Hulp.html');  
		var l = img_name.length;
		var rnd_no = Math.round((l-1)*Math.random());			
		document.getElementById( id ).style.backgroundImage = 'url(http://static-m.rodekruisgent.be/frontpix/' + img_name[rnd_no] + ')';
		document.getElementById( id ).href = 'http://www.rodekruisgent.be/' + url[rnd_no];
	}
}
