Date Guesser
==================
The default javascript
Date.parse('Aug 9, 1995')
is quite decent, but gives up too soon.
The following are all invalid dates or parsed wrong:
```
new Date(Date.parse('19/8/1995'));
new Date(Date.parse('2th Sept 2010'));
new Date(Date.parse('Okt 2014')); // Gives Jan 01 2014
```
To parse a date is no easy feat, given timezones and different formatting styles. This script looks for patterns in a string
to guess the date a little better with European formats.