

<!-- Begin
theNews=new newsScroll("theNews"); //create our newsScroller object
   theNews.scrollerdelay = 3000; // pausetime 3000 = 3 Seconds
   theNews.scrollerwidth = 600;  // the width of the box
   theNews.scrollerheight = 28; // the height of the box
   theNews.scrollerbgcolor = ''; //  the box background color
   theNews.scrollerbackground = ''; // Set to blank if you don't want to use a background image

   //******************************************************************
   // 
   // The addItem method below has 5 variables and is formated as follows:
   // addItem (text,link,font,fontSize,fontStyle)
   // text      - the text to be displayed.
   // link      - (optional) website, or page to link news item to.
   // font      - (optional) Font face to use on item.
   // fontSize  - (optional) size in pt format 
   //     i.e. 1=8pt, 2=10pt, 3=12pt and so on.
   // fontStyle - (optional) css style to assign to font. You can use the class name.
   // 
   //******************************************************************

   theNews.addItem(':: New business case available, published in Business Logistics, check our News. ::','news.asp','','','newsTxt2'); 
   theNews.addItem(':: Did you know? Fuel prices are 20% of the total cost of transport  ::','','','','newsTxt1');
   theNews.addItem(':: New business case published in Industrie-Technisch Management, check our News. ::','news.asp','','','newsTxt2'); 
   theNews.addItem(':: Did you know? There are more than 150.000 trucking companies in Europe  ::','','','','newsTxt1');
   theNews.addItem(':: On average, 30% of the driven kilometers are empty  ::','','','','newsTxt1');
   theNews.addItem(':: Did you know? 5 to 15% of the invoices sent by trucking companies contain errors ...','','','','newsTxt1');
   theNews.addItem('... and unforseseen surcharges  ::','','','','newsTxt1');   
   theNews.addItem(':: Reconciliating the errors costs between 50 Euro and 500 Euro  ::','','','','newsTxt1');
   theNews.addItem(':: Did you know? 75% of the business partners do not exchange data electronically  ::','','','','newsTxt1');


   // the next 2 lines construct the news box, and start the scroller
   theNews.construct();
   theNews.startScroll();
// End -->


