function getbanner() 
{
banner = new MakeArray(100);
numbanner = 3;  // number of images

banner[0] = "<b>Instructacard - A unique concept in golf instruction! </b> Less is more and never more so than with these ground-breaking guides from Instructacard&#8482;. No complex theories, just basic, easy to follow golf instruction that will guarantee immediate improvement in all aspects of your game.  <a href=\"http://www.golftoday.co.uk/noticeboard/classifieds/index.html\">Visit Classified Ads...</a>"
banner[1] = "<b>FRONTLINE GOLF APARTMENT MURCIA, SPAIN</b> Located in superb position on acclaimed Jack Nicklaus designed championship course. Two bedrooms,sleeps 6. Air Con, Sat TV. Swimming pool. Flexible dates, direct with owner. Close to 10 other courses, 15 mins from aiport. <a href=\"http://www.golftoday.co.uk/noticeboard/classifieds/index.html\">Visit Classified Ads...</a>"
banner[2] = "<b>Take 10 strokes off your scores - or you pay nothing!</b> My name is Charles Schwartz. I can turn you into the golfer you always dreamed of becoming. If you play off a 24 handicap or higher, I will improve your golf game by 10 strokes (or more) within one week. I absolutely guarantee it. <a href=\"http://www.golftoday.co.uk/noticeboard/classifieds/index.html\">Visit Classified Ads...</a>"


             var now = new Date()
             var sec = now.getSeconds()

             return banner[sec % numbanner];
     }

     function MakeArray(n) 
     { 
             this.length = n; 
             for (var i = 1; i <= n; i++) { 
                     this[i] = 0 }
                 return this 
     };
