var golftrivia = new Array();

golftrivia[0] = '<h1>Golf Trivia</h1><span class="arial-grey-12-b">What is a bogey?</span> <br /><div class="gt-main"><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s1" value="A score of one over par on a hole" /></div><div class="gt-rig">A score of one over par on a hole</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s2" value="A score of two over par on a hole " /></div><div class="gt-rig">A score of two over par on a hole </div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s3" value="A score of three over par on a hole" /></div><div class="gt-rig">A score of three over par on a hole</div></div></div><input class="btn-gt" id="btn-gt" value="Answer" type="button"><input name="answer" id="answer" type="hidden" value="A score of one over par on a hole" /><input id="ans_yes" value="<strong>Your answer is right!</strong> <br/><br/> It is A score of one over par on a hole." name="ans_yes" type="hidden"><input id="ans_no" value="<strong>Sorry the right answer is</strong> <br/><br/> A score of one over par on a hole." name="ans_no" type="hidden"><div class="line-x"></div>';

golftrivia[1] = '<h1>Golf Trivia</h1><span class="arial-grey-12-b">The first golf balls were filled with what substance?</span> <br /><div class="gt-main"><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s1" value="Feather" /></div><div class="gt-rig">Feather</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s2" value="Cotton" /></div><div class="gt-rig">Cotton</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s3" value="Leather" /></div><div class="gt-rig">Leather</div></div></div><input class="btn-gt" id="btn-gt" value="Answer" type="button"><input name="answer" id="answer" type="hidden" value="Feather" /><input id="ans_yes" value="<strong>Your answer is right!</strong> <br/><br/> It is Feather." name="ans_yes" type="hidden"><input id="ans_no" value="<strong>Sorry the right answer is</strong> <br/><br/>  Feather." name="ans_no" type="hidden"><div class="line-x"></div>';

golftrivia[2] = '<h1>Golf Trivia</h1><span class="arial-grey-12-b">Who became the youngest and oldest player to win the Masters, in 1963 and 1986?</span> <br /><div class="gt-main"><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s1" value="Jack Nicklaus" /></div><div class="gt-rig">Jack Nicklaus</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s2" value="Arnold Palmer" /></div><div class="gt-rig">Arnold Palmer</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s3" value="Tom Watson" /></div><div class="gt-rig">Tom Watson</div></div></div><input class="btn-gt" id="btn-gt" value="Answer" type="button"><input name="answer" id="answer" type="hidden" value="Jack Nicklaus" /><input id="ans_yes" value="<strong>Your answer is right!</strong> <br/><br/> It is Jack Nicklaus." name="ans_yes" type="hidden"><input id="ans_no" value="<strong>Sorry the right answer is</strong> <br/><br/>  Jack Nicklaus." name="ans_no" type="hidden"><div class="line-x"></div>';

golftrivia[3] = '<h1>Golf Trivia</h1><span class="arial-grey-12-b">What\'s a golfer said to have if he is entitled to tee off first?</span> <br /><div class="gt-main"><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s1" value="The bogey" /></div><div class="gt-rig">The bogey</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s2" value="The Honor" /></div><div class="gt-rig">The Honor</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s3" value="The Master" /></div><div class="gt-rig">The Master</div></div></div><input class="btn-gt" id="btn-gt" value="Answer" type="button"><input name="answer" id="answer" type="hidden" value="The Honor" /><input id="ans_yes" value="<strong>Your answer is right!</strong> <br/><br/> It is The honor." name="ans_yes" type="hidden"><input id="ans_no" value="<strong>Sorry the right answer is</strong> <br/><br/>  The honor." name="ans_no" type="hidden"><div class="line-x"></div>';

golftrivia[4] = '<h1>Golf Trivia</h1><span class="arial-grey-12-b">Who won a record six PGA Player of the Year Awards?</span> <br /><div class="gt-main"><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s1" value="Jack Nicklaus" /></div><div class="gt-rig">Jack Nicklaus</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s2" value="Arnold Palmer" /></div><div class="gt-rig">Arnold Palmer</div></div><div class="gt-row"><div class="gt-left"><input type="radio" name="radio" id="s3" value="Tom Watson" /></div><div class="gt-rig">Tom Watson</div></div></div><input class="btn-gt" id="btn-gt" value="Answer" type="button"><input name="answer" id="answer" type="hidden" value="Tom Watson" /><input id="ans_yes" value="<strong>Your answer is right!</strong> <br/><br/> It was Tom Watson." name="ans_yes" type="hidden"><input id="ans_no" value="<strong>Sorry the right answer is</strong> <br/><br/>  Tom Watson." name="ans_no" type="hidden"><div class="line-x"></div>';

function golf_trivia() {
	ran_num = Math.round(Math.random()*((golftrivia.length)-1));
	document.getElementById("golf_trivia").innerHTML = golftrivia[ran_num];
}
