theNews=new newsScroll("theNews"); //create our newsScroller object
   theNews.scrollerdelay = 5000; // pausetime 3000 = 3 Seconds
   theNews.scrollerwidth = 200;  // the width of the box
   theNews.scrollerheight = 60; // 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('HAPPY HARBOR COMICS IS THE BEST IN CANADA - VISIT US TODAY AND SEE WHY!!','','','','newsTxt1');

   theNews.addItem('EXPERIENCE THE COMIC JAM Wacky improv artwork every second Thursday, 7pm at HHV1','','','','newsTxt1');
   theNews.addItem('HEROIC GAMING: HEROCLIX! Action based miniature gameplay  Saturdays, 1pm at HHv1','','','','newsTxt1');
   theNews.addItem('~ MAGIC THE GATHERING ~ Casual gameplay every second  Thursday, 6pm at HHv3','','','','newsTxt1');
   theNews.addItem('HEROCLIX CASUAL PLAY: Good for beginners and veterans alike! Sundays, 1:00pm at HHv3','','','','newsTxt1');
   theNews.addItem('~ MAGIC THE GATHERING ~ Friday Night Magic every second  Friday, 6pm at HHv3','','','','newsTxt1');

   theNews.addItem('HH VOLUME 3, 10326 - 81 Ave. WE\'RE JUST OFF WHYTE AVE  TWO LEVELS TO EXPLORE!','','','','newsTxt1');
   theNews.addItem('THERE\'S A TON OF AWESOME STUFF AT HAPPY HARBOR vol.2  137 Ave & Manning Freeway','','','','newsTxt1');


   // the next 2 lines construct the news box, and start the scroller
   theNews.construct();
   theNews.startScroll();