It looks like you are already tracking them with a URL parameter.
If Google Analytics successfully tracks them as separate pageviews with the URL ref= parameter, then you can create your own report in GA that shows the number of pageviews. A custom report can be added to your toolbar for quick reference.
A custom report can be configured as follows:
Metric Groups: Pageviews
Dimension Deployment: Page
Filters: include → Page → regex → /contact\?ref=(content|menu|footer)
Or for each click, add the following to each link:
<a href=http://www.example.com/contact" onClick="_gaq.push(['_trackEvent', 'Page', 'Click', 'Contact - Menu']);">Contact</a> <a href=http://www.example.com/contact" onClick="_gaq.push(['_trackEvent', 'Page', 'Click', 'Contact - Content']);">Contact</a>
Repeat for each link. This is nothing more than adding ref= to each link.
source share