  // copyright 2009 jc.unternet.net
  // all rights assigned to myonevote.com
  // script released into public domain by myonevote.com 2009
  var questions = [
   ["Can you name one thing that our Government does right?"]
   ,["Amtrak is broke, Social Security will be broken soon."]
   ,["The Post Office is laying off people, running in the red every year."]
   ,["Why have our lawmakers lost touch with our reality?"]
   ,["Education today cheats our children, gets worse every year."]
   ,["What has government done right lately?  Can you really even think of one thing they do right?"]
   ,["When did our lawmakers lose touch with our reality?"]
   ,["Why do our lawmakers live by different standards than we are forced to live by?"]
   ,["Do you feel that your needs are even being considered?"]
   ,["Do you feel that your needs are even important to your government?"]
   ,["After 40 years of reform, where is the reform they all talk about?"]
   ,["Schools, Roads, Jobs, Wars, The National Debt, can't they see, they will never get it right?"]
   ,["Did any of them come from the private sector?  Do any of them even know what it is to hold a real job?"]
   ,["Do they think we are stupid?  if we keep electing them, sadly we are really that stupid."]
   ,["Is our government working as it was intended?"]
   ,["How many multimillionaires are in Congress today?"]
   ,["Have you stopped to see just how large the national debt really is?"]
   ,["Who is going to pay for all this?"]
   ,["Are Americas needs and those of Americans being put aside for other nations?"]
   ,["When do We The People of America come first?  When is it our turn?"]
   ,["Fire them all, they are failing us like never before.  It will not end unless we fire them all."]
  ]
  var question_index = 1; // skip first question first run, already there
  var intervalID;
  function new_question() {
   var banner = document.getElementById("rolling_banner");
   if (banner != null) {
    banner.childNodes[0].nodeValue = questions[question_index][0];
    question_index = (question_index + 1) % questions.length;
   }
  }

  function popup(url) {
   // from http://www.quirksmode.org/js/popup.html
   newwindow = window.open(url, 'name', 'height=450,width=600,scrollbars=yes');
   if (window.focus) newwindow.focus();
   return false;  // keeps javascript-enabled browsers from simply following link
  }
  
  $(document).ready(function(){
    if (document.getElementById("rolling_banner") != null) {
    intervalID = setInterval("new_question()", 4000);
    }
  });
