
var content = [
  "<div style=\"width:280; text-align:left; font-size:18px; padding-right:8px;\"><br><br><i><b>&bull; Jingles...</b><br>make your radio or television commercials <u>more effective</u>.</i></div>",
  "<div style=\"width:280; text-align:left; font-size:18px; padding-right:8px;\"><br><br><i><b>&bull;</b> A <b>jingle</b> &quot;gets in the head&quot; of the listener and helps them <u>recall your business name</u> faster and easier.</i></div>",
  "<div style=\"width:280; text-align:left; font-size:18px; padding-right:8px;\"><br><br><i><b>&bull;</b> The <b>purpose of a jingle</b> is <u>not to entertain</u>, but <b>to sell your product</b> or service while entertaining.</i></div>",
  "<div style=\"width:280; text-align:left; font-size:18px; padding-right:8px;\"><span style=\"font-size:.2em;\">&nbsp;</span><br><i><b>&bull; Use a &quot;doughnut jingle&quot;</b> (singing at the start and end with a hole in the middle) and a local announcer to change your commercials inexpensively and frequently. We'll show you how.</i></div>",
  "<div style=\"width:280; text-align:left; font-size:18px; padding-right:8px;\"><br><br><i><b>&bull;</b> Name recognition and <u>recall increase significantly</u> when heard in a <b>jingle</b>.</i></div>",
  "<div style=\"width:280; text-align:left; font-size:18px;\"><span style=\"font-size:.2em;\">&nbsp;</span><br><b>&bull;</b> <i>Straight talk about jingles</i></div> <span style=\"font-size:16px;\">A blog post for potential jingle users that tells it like it is. This is one of those &quot;must read&quot; entries if you're trying to decide whether and who regarding your broadcast media advertising. Read it <a class=\"one\" href=\"blog.php?iframe=blog_files/straight_talk_about_jingles.html\" target=\"_top\"><font color=\"blue\">here</font></a></i></span>",
  "<div style=\"width:280; text-align:left; font-size:18px; padding-right:8px;\"><br><br><i><b>&bull;</b> Feeling \"Left Out\"?</i></div><hr style=\"width:170px;\" align=left><div style=\"width:280px; height:100px; margin:0px; padding:0px; font-size:14px; text-align:top; overflow:hidden;\"><i><b>Opt <u>in</u>!</b></i> Subscribe to our <a href=\"newsletter/online_may_2010.html\" target=\"_top\" style=\"color:blue; text-decoration:none;\">Newsletter</a>! Click here for <a href=\"af_newsign.html\" target=\"newsf\" onclick=\"javascript:parent.switchid('a2');parent.document.getElementById('billboard').src='PM1K.html';\" style=\"color:blue; text-decoration:none;\">Express Opt-In</a></div>"
];
var msgPtr = 0;
var stopAction = null;

function change() {
  var newMsg = content[msgPtr];
  document.getElementById('change').innerHTML = newMsg;
  msgPtr++;  msgPtr = (msgPtr % content.length);
}

function startFunction() { change();  stopAction = setInterval(change, 12000); }
function stopFunction() { clearInterval(stopAction); }


