var Msg = new Array();
var PopUpMenu = new Array();
// You can make as many messages as you want!! just add Msg[6] = "Text of a message", Msg[7] = "ddd" and etc.

// +++++++++++++++++++++++++++++++++++++++++ RUNNING NEWS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Msg[0] = "<b> Welcome to Beach Scooter Rental !!!</b> ";
Msg[1] = "<b>For Online Scooter rentals reservation <a class='Regular' href='http://www.beachscooter.com/new/scooter_rentals.html'> Click here </b>";
Msg[2] = "<b>Check Our new WebSite for sale Scooter  <a class='Regular' href='http://www.Dkcycle.com'> Click here </b>";
Msg[3] = "<b>March 2010: Rent a Scooter 1 Passengers for $48 a day when you rent 5 days minimum   </b> ";
//Msg[4] = "<b>January 2010: Rent a Scooter 1 Passengers for $37.50 a day when you rent 4 days minimum   </b> ";
//Msg[5] = "<b>02/07/2006 If you need help?</b> You can always call me at 786-348-4330. Also if you put mouse over the news, it will stop scrolling the text, so you can read. To keep scrolling just move mouse out of the news or press left button...You will see what will happen!";
//Msg[6] = "jdkfgjdhfgjdfhguj";

// End of MSG

// ************ BEGINING OF NEW SCOOTER POPUP MENU *****************///

PopUpMenu[0] = '<li style="padding:5px 5px 0px 5px;"><a class="Regular3" href="new_scooters.html#kymkousaRef">KYMKO USA</a></li>';
PopUpMenu[1] = '<li style="padding:5px 5px 0px 5px;"><a class="Regular3" href="new_scooters.html#tgbRef">TGB</a></li>';
PopUpMenu[2] = '<li style="padding:5px 5px 0px 5px;"><a class="Regular3" href="new_scooters.html#hyosungRef">HYOSUNG</a></li>';
PopUpMenu[3] = '<li style="padding:5px 5px 0px 5px;"><a class="Regular3" href="new_scooters.html#daelimusaRef">DAELIM USA</a></li>';
PopUpMenu[4] = '<li style="padding:5px 5px 0px 5px;"><a class="Regular3" href="new_scooters.html#malagutiRef">MALAGUTI</a></li>';
PopUpMenu[5] = '<li style="padding:5px 5px 0px 5px;"><a class="Regular3" href="new_scooters.html#unitedmotorRef">UNITED MOTOR</a></li>';
PopUpMenu[6] = '<li style="padding:5px 5px 5px 5px;"><a class="Regular3" href="new_scooters.html#stradaRef">STRADA</a></li>';

// IMPORTANT!!!!!
//  Keep the last menu item's padding like this: padding:5px 5px 5px 5px;

//************ END OF POPUP MENU *********************///



















/********* all editable see above this line ************/
function CreatePopupMenu()
{
for (var i = 0; i < PopUpMenu.length; i++) document.write(PopUpMenu[i]);
}

function BuildRunningText()
{
var Text = "";
for (var i = 0; i < Msg.length; i++) Text += "<p class='RunningText'>" + Msg[i] + "</p>";
document.getElementById("RunningNews").style.height = 48;
document.getElementById("RunningNews").innerHTML = Text;
}