You can do the following 'hackish' thing to achieve this in cron
* * * * * root /usr/bin/wget --quiet --delete-after http://your.url
* * * * * root (sleep 10;/usr/bin/wget --quiet --delete-after http://your.url)
* * * * * root (sleep 20;/usr/bin/wget --quiet --delete-after http://your.url)
* * * * * root (sleep 30;/usr/bin/wget --quiet --delete-after http://your.url)
* * * * * root (sleep 40;/usr/bin/wget --quiet --delete-after http://your.url)
* * * * * root (sleep 50;/usr/bin/wget --quiet --delete-after http://your.url)
It would be better to just run a 'daemon' to do this for you, here is a simple one in bash.
#!/bin/bash
while true;do
sleep 5
wget --quiet -O/dev/null "www.example.org"
done
Just fire that up in the background.