
    // ================================================ //
    // Typing Banner v1.1 by Elton Kong (2000/05/01).   //
    // (c)1998-2000 Elton Kong. All Rights Reserved.    //
    // You can freely use or modify the script, as long //
    // as this message is kept intact in the source.    //
    //                                                  //
    // Contact me by:                                   //
    // elton@graffiti.net                               //
    // http://home.netvigator.com/~freya/               //
    // ================================================ //

    // banner messages
    // interval between message advancement
    // interval between character advancement
    // index of message pointer
    // index of character pointer
    var TB_msg, TB_msg_delay, TB_char_delay, TB_msg_index, TB_char_index;

    function TB_runBanner() {
      document.TB_f.t.value+=TB_msg[TB_msg_index].charAt(TB_char_index);

      if (TB_char_index<(TB_msg[TB_msg_index].length-1)) {
        TB_char_index++;
        setTimeout("TB_runBanner()", TB_char_delay);
      } else {
       TB_msg_index =(TB_msg_index)%TB_msg.length;
       TB_char_index=0;
        setTimeout("TB_startBanner()", TB_msg_delay);
     }
    }

    function TB_startBanner() {
	  TB_msg_index = Math.floor(Math.random()*31);
      document.TB_f.t.value="";
      TB_runBanner();
    }

    function TB_initBanner() {
      TB_msg   = new Array();
	  
      TB_msg[0]="Aan de Stegge Twello";
	  TB_msg[1]="Achmea Vastgoed";
      TB_msg[2]="Aprisco";
      TB_msg[3]="Arlington Property Inverstors Europe B.V.";
      TB_msg[4]="Hansteen";
      TB_msg[5]="AXA REIM";
      TB_msg[6]="Bam Vastgoed B.V.";
      TB_msg[7]="Breevast B.V.";
      TB_msg[8]="Brezan";
      TB_msg[9]="Bouwfonds Asset Management";
      TB_msg[10]="Corio Nederland Kantoren B.V.";
      TB_msg[11]="Cortona Holdings B.V.";
      TB_msg[12]="DaimlerChrysler Nederland B.V.";
      TB_msg[13]="De Groene Groep";
      TB_msg[14]="Deli XL";
      TB_msg[15]="Exel";
      TB_msg[16]="Fortis Vastgoed";
      TB_msg[17]="Heineken Nederland B.V.";
      TB_msg[18]="ING real estate";
      TB_msg[19]="Ingram Micro B.V.";
      TB_msg[20]="NCD";
      TB_msg[21]="Nefkens Groep";
      TB_msg[22]="Philips Pensions Competence Center B.V.";
      TB_msg[23]="Postkantoren B.V.";
      TB_msg[24]="Rabobank";
      TB_msg[25]="Shell International B.V.";
      TB_msg[26]="Smart Nederland B.V.";
      TB_msg[27]="Spectra Facility B.V.";
      TB_msg[28]="Stena Realty B.V.";
      TB_msg[29]="The io Group Netherlands B.V.";
      TB_msg[30]="Uni Invest N.V";
      TB_msg[31]="VastNed";
	  TB_msg[31]="Ten Brinke Groep";
		TB_msg[32]="Brezan";
		TB_msg[33]="Kuehne + Nagel N.V.";
		TB_msg[34]="Halverton";
		TB_msg[35]="Coördinatie Bouw.";

      TB_msg_delay =4000; // milli-seconds
      TB_char_delay=1;  // milli-seconds

	  TB_msg_index = Math.floor(Math.random()*36);
//      TB_msg_index =5;
      TB_char_index=0;

      TB_startBanner();
    }

    // ================= //
    // End Typing Banner //
    // ================= //
	

//-->
// JavaScript Document