<!--
// 

function displayspecial() {
      var specialchoices=2
      var chooseword=get_random(specialchoices);
      switch (chooseword) {
      case 0 :
         var newword="Finally the days are long, Summer is here, life is awesome!";
         break;
      case 1 :  
         var newword="Time to add that extra 'bling' that will set your ride apart from the rest!";
         break;
      case 2 :  
         var newword="Express your individuality and customize your ride!";
         break;
      case 23 :  
         var newword="";
         break;
      }  
  
  var newword= "July 2010:"
 +  String.fromCharCode(13)+String.fromCharCode(10) +"Thanks to all our customers for your recent orders. Finally got the driving light kits back in stock."+ String.fromCharCode(13)+String.fromCharCode(10)
+String.fromCharCode(13)+String.fromCharCode(10) + "Keep checking back, we are working on a few new, exciting products. Our new website design will be online this summer."
   

   document.Special.SpecialText.value=newword;   
   setTimeout('specialtimeout()',5000);

}

function displaymessage() {
      var messagechoices=2
      var chooseword=get_random(messagechoices);
      switch (chooseword) {
      case 0 :
         var newword="   Riding season 2010 is around the corner!" + String.fromCharCode(13)+String.fromCharCode(10) + String.fromCharCode(13)+String.fromCharCode(10) + "Put on a jacket, and add those few little items that will make your ride seem new again.";
         break;
      case 1 :  
         var newword="   Is your bike accessory fund running low?" + String.fromCharCode(13)+String.fromCharCode(10) +String.fromCharCode(13)+String.fromCharCode(10) + " Have a garage sale, or sell some stuff to a coworker.";
         break;
      case 2 :  
         var newword="   Attention: CruiserFX customers." + String.fromCharCode(13)+String.fromCharCode(10) +String.fromCharCode(13)+String.fromCharCode(10) + "Please send us photos of our products on your bike! (Send to photos@cruiserfx.com)";
         break;
      }  

    

document.Hype.Words.value=newword;   
   setTimeout('msgtimeout()',12000);

}


function displayhype() {
      var hypechoices=20
      var chooseword=get_random(hypechoices);
      switch (chooseword) {
      case 0 :
         var newword="   Since its introduction, approx. 100,000 Sabre motorcycles have been sold in the U.S. Make your's unique with CruiserFX products.";
         break;
      case 1 :  
         var newword="   2010 is here! Express your individuality and customize your ride!";
         break;
      case 2 :  
         var newword="   Don't trade in your bike just to get a new look! Customize! Customize! Customize!";
         break;
      case 3 :  
         var newword="   Is it a Sabre or a VTX? With the CruiserFX 'Spark Plug Covers' you'll leave them scratching their heads while they admire your ride!";
         break;  
      case 4 :  
         var newword="   Ever had another bike pull up alongside that looked EXACTLY THE SAME as yours? Don't let it happen again! Give your ride a UNIQUE LOOK!";
         break;  
      case 5 :  
         var newword="   It's not WHAT you ride that matters the most, but what you've DONE to your ride that determines whether or not you can boast.";
         break;  
      case 6 :  
         var newword="   'There is more happiness in giving than in receiving', so GIVE yourself that accessory now and be happy. Then be even happier when you RECEIVE it in a couple of days.";
         break;  
      case 7 :  
         var newword="   So your wife says you are a 'procrastinator'. Show her you've changed and buy those Spark Plug Covers Today!";
         break;  
      case 8 :  
         var newword="   If 'a bird in your hand is worth two in the bush', then What are you waiting for! Get your Hands on that CruiserFX item now! Place your order today!";
         break;  
      case 9 :  
         var newword="   'Actions speak louder than words' so don't just tell your friends about how you are going to dress up your ride, 'Just do it'!";
         break;  
      case 10 :  
         var newword="   'A friend in need is a friend indeed'. Promise you'll be their friend forever if they give you a CruiserFX Gift Certificate, because you REALLY NEED it.";
         break;  
      case 11 :  
         var newword="   'Never put off until tomorrow what you can do today'. Order your CruiserFX accessory today and you'll have it a couple of days after tomorrow.";
         break;  
      case 12 :  
         var newword="   'Necessity is the mother of invention'. So you need some new chrome for your ride, invent a way to come up with the funds.";
         break;
      case 13 :  
         var newword="   'To err is human, to forgive divine'. Buy those accessories now and give your wife the chance to be forgiving.";
         break;  
      case 14 :  
         var newword="   'Variety is the spice of life'. So spice up your life and your ride with a some new chrome!";
         break;  
      case 15 :  
         var newword="   'You can lead a horse to water, but you can’t make him drink.' The Internet led you here so go ahead, take a drink of some CruiserFX accessories!";
         break;
      case 16 :  
         var newword="   If 'An apple a day keeps the doctor away', imagine what 'A CruiserFX accessory a month' could do for you!";
         break;
      case 17 :  
         var newword="   So you've been riding for a while and the 'newness' is wearing off; What can you do? Add another accessory to your bike and keep 'the pride in your ride on high' the whole season long!";
         break;
      case 18 :  
         var newword="   Not that we encourage covetousness, but it is a widely proven fact that the more 'bling' you attach to your ride, the more every one that sees it will wish it was theirs!";
         break;
      case 19 :  
         var newword="   Invest in your bike's future! Not that you'd ever sell your trusty, two-wheeled 'steed', but it is a fact that each dollar you invest in accessories adds an equal or greater amount to the resale value.";
         break;
      case 20 :  
         var newword="   How long has it been since someone said 'Nice ride!' as you were getting off your bike? If the frequency has decreased, we have the answer; More CruiserFX chrome!";
         break;

     }  

   
   
   document.Hype.Words.value=newword;     
   setTimeout('hypetimeout()',12000);
}

function get_random(hypechoices) {
   var ranNum=Math.round(Math.random()*hypechoices);
   return ranNum;
}

function specialtimeout() {
   displayspecial();
}

function msgtimeout() {
   displayhype();
}


function hypetimeout() {
   displaymessage();
}

//-->
