<!-- 
var o =  new  Array();
  o[1] = "\"IcoFX is a superb and ultra modern versatile original icon editor. Thank you very much.\"";
  o[2] = "\"Absolutely brilliant product!!! Well done. And thank you.\"";
  o[3] = "\"Thank you very much for your software IcoFX. It helped me a lot.\"";
  o[4] = "\"Just wanted to let you know how much I love your icon editor. The best out there by far.\"";
  o[5] = "\"I'm writing you to express my satisfaction for downloading your application. It's a great tool with a wide range of effects.\"";
  o[6] = "\"What a great program you have created! Icons are such a pain to deal with and you have just made it easy.\"";
  o[7] = "\"Today I downloaded IcoFX. Superb program. Have waited long time for such a nice icon-editor.\"";
  o[8] = "\"I really like IcoFX and it is a great tool.\"";
  o[9] = "\"This program was just what I was looking for! It's awesome. Simple interface, works great, lots of features... it rocks.\"";
  o[10] = "\"I just installed IcoFX and it really looks a great tool to me. The automation facilities are very very helpful.\"";
  o[11] = "\"Thank you for taking the time and energy to produce a great product.. I am really impressed.\"";
  o[12] = "\"Great Job!!! I really love your IcoFX. Lots of features and effects, beautiful and user friendly interface!!\"";
  o[13] = "\"Amazing program. The Photoshop of icon editors, obviously.\"";
  o[14] = "\"Awesome program, had to touch up a few icons and this worked fantastic.\"";
  o[15] = "\"I tried about a dozen downloadable icon editors and this is the only one that really works (they way you would expect).\"";
  o[16] = "\"Congratulations for such a fantastic program. It works like Photoimpact and makes all so much easier!\"";
  o[17] = "\"This is an awesome program. You did good on it. It's the best I've used so far.\"";
  o[18] = "\"This program is great!  Thanks for all your hard work.\"";
  o[19] = "\"It's the first icon editor I've ever used that's simple and does only what I want it to do, quickly and efficiently.\"";
  o[20] = "\"This icon editor seems to be the best I've found! Intuitive, and does everything I want.\"";
  o[21] = "\"Just downloaded and I found it great - exactly what I needed to design some icons.\"";

function getRandText() 
{
  var count = 21;
  var r = Math.ceil(Math.random() * count);
  return o[r];
}

function textSlideShow()
{
  var count = 21;
  var r = Math.ceil(Math.random() * count);
  document.getElementById('textslide').innerHTML=o[r];

  setTimeout("textSlideShow()", 10000);
}
//-->
