		image1 = new Array('clinic.jpg','clinic.jpg','clinic.jpg');
		image2 = new Array('education.jpg','education.jpg','education.jpg');
		image3 = new Array('consult.jpg','consult.jpg','consult.jpg');
		var txt1, txt2, txt3, increment;
		
		//#imgs in each array
		var number = 3;
		
			
		increment = Math.floor(Math.random() * number); 
		txt1 = '<div style="float:left; width:181px; height:183px; margin-right:1px solid #ffffff;"><a href="/oioc/clinical/"><img src="/oioc/images/' + image1[increment] + '" border="0"><br><img src="/oioc/images/clinical-header.jpg" alt="Clinical" width="180" height="33" /></a></div>';
		increment = Math.floor(Math.random() * number); 
		txt2 = '<div style="float:left; width:181px; height:183px; margin-right:1px solid #ffffff;"><a href="/oioc/education/"><img src="/oioc/images/' + image2[increment] + '" border="0"><br><img src="/oioc/images/education-header.jpg" alt="Education" width="180" height="33" /></a></div>';
		increment = Math.floor(Math.random() * number); 
		txt3 = '<div style="float:left; width:181px; height:183px; margin-right:1px solid #ffffff;"><a href="/oioc/consultation/"><img src="/oioc/images/' + image3[increment] + '" border="0"><br><img src="/oioc/images/consult-header.jpg" alt="Consultation" width="180" height="33" /></a></div>';
		document.write(txt1);
		document.write(txt2);
		document.write(txt3);
		
		
