// *****************************************************************************
// * Copyright 2011, Xbidit LLC. All Rights Reserved.                          *
// *****************************************************************************

var msg=Math.floor(Math.random()*5) + 1;
old_msg = msg;

function banner() {
   document.all['banner'].style.fontSize = "12px";
   msg++;
   if (msg == 1) {
      document.all['banner'].innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Join Xbidit for free";
   }
   else if (msg == 2) {
      document.all['banner'].innerHTML = "Limited time - Free to sell in beta";
   }
   else if (msg == 3) {
      document.all['banner'].innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;No Final Value Fee";
   }
   else if (msg == 4) {
      document.all['banner'].innerHTML = "Prices include shipping on all shipped items";
   } 
   else if (msg == 5) {
      document.all['banner'].innerHTML = "Shop local using your ZIP code";
   }
   else if (msg == 6) {
      document.all['banner'].innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;List items until they sell";
   }
   else if (msg == 7) {
      document.all['banner'].innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adjust ask or bid price at anytime (see Terms)";
   }
   else if (msg == 8) {
      document.all['banner'].innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Cancel ask or bid at anytime (see Terms)";
      msg = 0;
   }
   else {
      msg = 0;
      document.all['banner'].innerHTML = "";
   }

   window.setTimeout('banner();', 5000);
}


