var ar = new Array(
"Does your body not look the way you want it to?",
"Do you need help training for a special event?",
"Need help with an exercise routine that best suites you?",
"Do you want your children to have a healthy lifestyle?",
"Do you need help with a nutritional program?",
"Do you have a team that needs a workout program?",
"Do your employees need fitness training?");

var num = Math.floor(Math.random() * ar.length);
document.write(ar[num]);



