All your links lead to the same page with no way of distinguishing them. Since it's a PHP page and you want to track the popularity of each link, my suggestion would be to append a query string that would do the trick.
For instance
http://www.innerwestmassage.com.au/i...?sb=Abbotsford
will let you know that "Abbotsford" was clicked.
$_GET['sb'] is the global variable you can use for your tracking.
If you do not want the "?" then you can use the mod_rewrite and have a link
http://www.innerwestmassage.com.au/i...Abbotsford.php[/i]