Aha! No I don't, but that's probably a great tip!
Visitors usually comes from Google and hits the correct page. All my goals are on this page, so I guess I need to use virtual URL's in the pageTracker code to use Funnel.
Would it be possible to use multiple goal pages in the same onclick event like this?
// Item #1
<a href="/outgoing/{$item.ID}/" onclick="javascript: pageTracker._trackPageview('/goal1&{$item.ID}', '/funnel1&{$item.ID}'); return false;">
// Item #2 (changed funnel1 to funnel2)
<a href="/outgoing/{$item.ID}/" onclick="javascript: pageTracker._trackPageview('/goal1&{$item.ID}', '/funnel2&{$item.ID}'); return false;">
..and so on
And then set up funnel1, funnel1, funnel1 etc as non-required steps?
EDIT:
[
google.com...]
Ok, so it should be like this:
<a href="/outgoing/{$item.ID}/" onclick="javascript: pageTracker._trackPageview('/goal1&{$item.ID}'); pageTracker._trackPageview('/funnel1&{$item.ID}'); return false;">