
poll_1 = "Which age/stage is the hardest to parent?  <a href='/take-our-poll1'>Take our poll here</a>";

poll_2 = "What concerns you the most about kids today?  <a href='/take-our-poll-question-2'>Take our poll here</a>";

poll_3 = "Which age/stage is the hardest to parent?  <a href='/take-our-poll1'>Take our poll here</a>";

poll_4 = "What concerns you the most about kids today?  <a href='/take-our-poll-question-2'>Take our poll here</a>";

poll_5 = "Which age/stage is the hardest to parent?  <a href='/take-our-poll1'>Take our poll here</a>";

poll_6 = "What concerns you the most about kids today?  <a href='/take-our-poll-question-2'>Take our poll here</a>";










//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////

var randomNum = Math.floor(Math.random()*6);

function poll()
{
    var polls=new Array(6)
	
     polls[0]= poll_1;
     polls[1]= poll_2;
     polls[2]= poll_3;   
     polls[3]= poll_4; 
     polls[4]= poll_5; 
     polls[5]= poll_6;     
	 
   document.write(polls[randomNum]);
}



