var questions=new Array();
questions[0]="It has been found that omega-3 intake, specifically DHA, in the last months of pregnancy boosts an infant’s sensory, cognitive and motor development.";
questions[1]="Good nutrition is important during pregnancy since the growth of the fetus’ body and brain is influenced by the quality of the mother’s diet.";

questions[2]="Breast milk is your baby’s best source of nutrients like DHA, which is highly concentrated in brain and retinal (eye) tissues and accumulates during late fetal and early neonatal life";
questions[3]="Early brain development is very dependent on human stimulus and quality of nutrition.";

questions[4]="While physical stimuli are important at 4 – 6 months of age, nutrition also continues to play a huge role to complement the stimuli and ensure optimum development.";
questions[5]="As breast milk may not be the sole source of nutrition at 4 - 6 months of age, it is more important than ever for your child to receive proper nutrition to ensure optimum mental and physical development.";

questions[6]="Encouraging movement, communication and social skills will help your 6 – 12 month old baby develop these abilities faster.";
questions[7]="Research has shown that infants 6 months old who were fed DHA-enriched egg yolk showed improved visual acuity - a proxy for brain development measurement – at 12 months.";

var rand = Math.round(Math.random()*7);
if(rand >= 6){
	document.getElementById('didyouknow_a').href="series4_q4.html";
}else if(rand >= 4){
	document.getElementById('didyouknow_a').href="series4_q3.html";
}else if(rand >= 2){
	document.getElementById('didyouknow_a').href="series4_q2.html";
}else{
	document.getElementById('didyouknow_a').href="series4_q1.html";
}
var x=document.getElementById('didyouknow').rows[2].cells;
x[0].innerHTML = questions[rand];