var questions=new Array();
questions[0]="Breast milk is found to be rich in omega-3 fatty acids, with a key ingredient being the brain-boosting DHA.";
questions[1]="Research provides strong evidence that prolonged and exclusive breastfeeding improves children’s cognitive development.";

questions[2]="Studies have shown that the higher the DHA level in your breast milk, the higher the DHA levels in the blood of your breast-fed child.";
questions[3]="To boost the DHA levels in your breast milk, it is recommended that your diet should be rich in omega-3 fatty acids, and more specifically, DHA.";

questions[4]="A review for World Health Organization recommends exclusive breastfeeding for 6 months, followed by continued breastfeeding with safe and appropriate feeding of other foods.";
questions[5]="Reports indicate that while more mothers are breastfeeding, they aren’t breastfeeding for very long. But research has shown that duration matters!";

questions[6]="Breast milk is nutritionally complete and has antibodies that protect the baby against a variety of illnesses and infections.";
questions[7]="Breastfed babies are healthier and suffer fewer symptoms and shorter illnesses if they do fall sick.";

var rand = Math.round(Math.random()*7);
if(rand >= 6){
	document.getElementById('didyouknow_a').href="series3_q4.html";
}else if(rand >= 4){
	document.getElementById('didyouknow_a').href="series3_q3.html";
}else if(rand >= 2){
	document.getElementById('didyouknow_a').href="series3_q2.html";
}else{
	document.getElementById('didyouknow_a').href="series3_q1.html";
}
var x=document.getElementById('didyouknow').rows[2].cells;
x[0].innerHTML = questions[rand];