var tips = new Array();
tips[tips.length] = "Travel by train after 09:30 or at weekends and save £££s.  A day return ticket costs little more than a single.";
tips[tips.length] = "Cycle into Epsom.  You can lock your bike to stands at the back and front of the Town Hall, in Derby Square / Oaks Square, outside the station and in the market place.";
tips[tips.length] = "Going into London in the evening?  The car park at Ewell West station usually has spaces from about 16:00.";
tips[tips.length] = "Check out the borough's network of footpaths.  Very often they are more direct than the road.";
tips[tips.length] = "Why not cycle to Epsom station and take the train?  There are cycle parking stands both inside and outside the station.";
tips[tips.length] = 'With an Oyster Card, you can travel on buses 166, 293, 406, 418 and 470 at a greatly reduced price.  Further details on <a href="http://www.oystercard.com" target="_blank">www.oystercard.com</a>.';
tips[tips.length] = "Why drive to Kingston?  The bus fare (£1.80 return with a pre-paid Oyster Card) will cost you far less than the car park.";
tips[tips.length] = "Take your bike on the train.  You can do this free of charge, but not during the rush hour (check timetables).";
tips[tips.length] = "Try using the bus in Greater London.  Bus lanes, congestion charging, additional services, new buses and lower fares have all improved the experience.";
tips[tips.length] = "Try cycling to the health club / sports centre for some additional aerobic exercise.";
tips[tips.length] = "Explore the borough's open spaces.  Horton Country Park, Epsom Common and Nonsuch Park all have paths for walkers and cyclists.";
tips[tips.length] = "You don't have to change trains to go to Guildford.  There is a train from Ewell West and Epsom every 30 minutes during the day from Monday to Saturday.";
tips[tips.length] = "You don't have to cycle along the main road.  There is now a cycle route down the western side of Epsom along Longmead Road and Pound Lane and through the Court Rec.";
tips[tips.length] = "Buy locally produced food whenever possible - reduce the pollution, congestion and global warming caused by bringing food long distances.";
tips[tips.length] = "If you have a car, go over to pay-as-you-drive insurance, which gives you an incentive to reduce the distance you drive.";
tips[tips.length] = "Travelling to London from Ewell or Stoneleigh? It's a lot cheaper to go to Vauxhall, which is in Zone 2.";
tips[tips.length] = "Fly Less. Remember that you can now reach many European destinations easily by train.";


today = new Date(); 
var days = Math.ceil((today / 1000 /60 / 60 / 24)); 
var index = days % tips.length;
document.write (tips[index]);


