
var events = new Array ('27th Apr 2011:Spitfire Bentwaters',
'30th Apr 1st May 2011:Large Model Aircraft show Rougham',
'12th May 2011:Spitfire Bentwaters',
'14th 15th May 2011:4x4 and Fly-in Rougham',
'18th Jun 2011:Grace Spitfire Gathering',
'18th 19th Jun 2011:MEBCC Rally',
'25th 26th Jun 2011:Rougham Country Fair',
'28th Jun 7th Jul 2011:Film Set',
'3rd Jul 2011:Thurston Air Fair',
'17th Jul 2011:Cowdrey Park Heli Pad',
'17th Jul 2011:Fly-in Rougham',
'18th Jul 26th July 2011:Film Set',
'21st Jul 2011:Aircraft movements Bentwaters', 
'29th Jul 2011:Spitfire Bentwaters',
'20th 21st Aug 2011:Ramsey 1940s',
'9th Aug 2011:Gadget Show',
'11th Aug 2011:Film Set',
'13th 14th 2011:Aug Air Display Rougham',
'2nd Sept 2011:Film Shoot',
'3rd 4th Sept 2011:Victory Show Cosby',
'8th Sept 2011:Top Gear',
'9th 12th Sept 2011:Harvest at Jimmys',
'25th Sept 2011:Party in Park Oxford',
'28th Sept 2011:Spitfire Bentwaters'
); 

all_events = events.length;

function show_events(maxevents){
          var eventnum = 0;
          if(maxevents > events.length){
          	maxevents = events.length;
          }
          maxevents--;
          while(eventnum <= maxevents){
          	splitpoint = events[eventnum].indexOf(':');
          	eventdate = events[eventnum].substring(0,splitpoint);
          	splitpoint++;
          	eventinfo = events[eventnum].substring(splitpoint);      	
          	document.write('<b>' + eventdate + ':</b> ' + eventinfo + '<br>');
          	eventnum++;
          }
          maxevents++;
          if(maxevents < events.length){
          	document.write('<p><span class="flt-rgt"><a href="events.shtml">MORE</a></span><p>');
          }
          return;
}
