var flashtextID = 0;
function showmsg()
{
flash_randomtest();
flashtextID = setInterval ( "flash_randomtest()", 5000 );
//setTimeout ( '', 5000 );
}
function randtxt(n)
{
return(Math.floor(Math.random() * n + 1));
}
var random_msg = new Array();
random_msg[1] = "<table cellpadding='3' cellspacing='0' border='0' width='100%'><tr><td><h3 class=\"slogan\">We Help You Learn To Save Lives</h3></td></tr></table>";

random_msg[2] = "<table cellpadding='3' cellspacing='0' border='0' width='100%'><tr><td><h3 class=\"slogan\">Everyone can be a Lifesaver</h3></td></tr></table>";

random_msg[3] = "<table cellpadding='3' cellspacing='0' border='0' width='100%'><tr><td><h3 class=\"slogan\">A Lifesaver in Every Home</h3></td></tr></table>";

random_msg[4] = "<table cellpadding='3' cellspacing='0' border='0' width='100%'><tr><td><h3 class=\"slogan\">No Point Being a Great Swimmer if You Cannot  Save a Life</h3></td></tr></table>";

random_msg[5] = "<table cellpadding='3' cellspacing='0' border='0' width='100%'><tr><td><h3 class=\"slogan\">Learn CPR and Save a Life</h3></td></tr></table>";

function flash_randomtest()
{
var x = randtxt(random_msg.length-1);
var h = document.getElementById("dycont");
var quotetxt = random_msg[x];
h.innerHTML = quotetxt;
}

