function get_random()
{
    var ranNum= Math.floor(Math.random()*6);
    return ranNum;
}

function homeRandom()
{
   var randomImageText=get_random();

    var myList=new Array(6)
    myList[0]="<img src=\"images/head/hands.jpg\" alt=\"image\" /><h2>Our Vision</h2> \
				<H6>Is for a cohesive national network that facilitates maternal-child clinical research in Canada and beyond .</h6>";
	


	myList[1]="<img src=\"images/head/microscope.jpg\" alt=\"image\" /><h2> The Overarching Goal </h2> \
				<H6>Is to empower the health research community to develop and implement solutions to issues affecting maternal infant child & youth health and health services.</h6>";
    
	
	
	myList[2]="<img src=\"images/head/books.jpg\" alt=\"image\" /><h2>Why join MICYRN?</h2> \
				<H6>MICYRN’s vision is that the synergistic strength gained from a formal collaborative network of researchers who are enabled by integrated infrastructure will spur tremendous advances that are unattainable by individual groups.</h6>";  
    
	
	
	myList[3]="<img src=\"images/head/scientists.jpg\" alt=\"image\" /><h2>A cohesive national network that facilitates maternal-child clinical research in Canada and beyond.</h2> \
				";
    
	
	
	myList[4]="<img src=\"images/head/kidjumping.jpg\" alt=\"image\" /><h2>Why MICYRN?</h2> \
				<H6>MICYRN’s vision is that the synergistic strength gained from a formal collaborative network of researchers who are enabled by integrated infrastructure will spur tremendous advances that are unattainable by individual groups.</h6>";
  
  
  
	myList[5]="<img src=\"images/head/image01.jpg\" alt=\"image\" /><h2>Research Networks & Teams</h2> \
				<H6>MICYRN is keen to foster relationships between other existing and emerging perinatal, neonatal, child and youth health research teams, networks, and organizations across the country. </h6>";
  
  
  
   document.write(myList[randomImageText]);
  }
