function mainRand(){
	var randomnumber=Math.floor(Math.random()*(weeklyRand.length));

	imgA = document.createElement('a');
	
	imgA.setAttribute("href" ,weeklyRand[randomnumber].href);
	
	img = document.createElement('img');
	imgSrc =String( weeklyRand[randomnumber].img);
	img.setAttribute("src" ,imgSrc);
	img.setAttribute("border" ,0);
	img.setAttribute("alt" ,weeklyRand[randomnumber].alt);
	
	imgA.appendChild(img);
	
	imgA2 = document.createElement('a');
	imgA2.setAttribute("href" ,weeklyRand[randomnumber].href);
	imgA2.innerHTML = weeklyRand[randomnumber].lable;
	
	brTag = document.createElement('br');
	document.getElementById('sickOfWeek').innerHTML = '';
	
	sowContainer = document.createElement('div');
	sowContainer.setAttribute("style", "width:200px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-style: normal;  color: #8CB1FF; text-align: center; margin:8px 0px 0px 0px;");
	
	sowContainer.appendChild(imgA);
	sowContainer.appendChild(brTag);
	sowContainer.appendChild(imgA2);
	
	document.getElementById('sickOfWeek').appendChild(sowContainer);
	
	}

mainRand();
