var mEssage = new Array() 
mEssage[0] = 'Health insurance companies are required to provide coverage for formula and low protein foods, but coverage amounts vary from state to state.'
mEssage[1] = 'There are a variety of options and combinations for formula, so keep trying until you find one that suits your, or your child\'s, needs and tastes.'
mEssage[2] = 'PKU doesn\'t have to change your social and personal life, you just need to plan in advance for meals and snacks.'
mEssage[3] = 'Most restaurants will accommodate special dietary needs, but many will not prepare food that you have brought into the restaurant, due to company policies. It is helpful to call ahead to see if they can prepare a low-protein meal.'
mEssage[4] = 'Disney World now has PKU on their list of &#8220;special diets&#8221;, and many of the Disney restaurants now carry Low Protein Pasta and/or MixQuick to accommodate those with PKU.'
mEssage[5] = 'Many people with PKU believe that the condition has helped them to lead a healthier lifestyle.'
mEssage[6] = 'Having a positive attitude about the condition will help both you and your child to better manage the diet and lifestyle.'
mEssage[7] = 'All resources in this package can be translated into your language. NECPAD is here to answer all of your questions and to provide you with support.'

var k = 0
var q = mEssage.length;

var preBuffer = new Array()
for (w = 0; w < q; w++){
   preBuffer[w] = new Image()
   preBuffer[w].src = mEssage[w]
}

var whichImage = Math.round(Math.random()*(q-1));
function randomSide(){
document.write('<span>'+mEssage[whichImage]+'</span>');
}


