//Define Global Variables
var menuInfo = new Array();
menuInfo[0] = "";
menuInfo[1] = "Welcome to the Real Radio website!";
menuInfo[2] = "<div style='padding-left: 70px;'>Learn more about Real Radio.</div>";
menuInfo[3] = "<div style='padding-left: 100px;'>Listen to today's broadcast or browse the broadcast archives.</div>";
menuInfo[4] = "<div style='padding-left: 200px;'>Read how listeners have been effected by Real Radio and share your own story.</div>";
menuInfo[5] = "<div style='text-align: right; padding-right: 70px;'>A listing of stations you can hear Real Radio on.</div>";
menuInfo[6] = "<div style='text-align: right;'>Purchase products here.</div>";

//Display menu text
function menuText(tab)
 {
  document.getElementById('menuText').innerHTML = menuInfo[tab];
 }
