The google documentation says
Add the new tag to your tracking code, before _trackPageview, as illustrated by the bold text in the example below:
var _gaq = _gaq || [];
var pluginUrl =
‘//www.google-analytics.com/plugins/ga/inpage_linkid.js’;
_gaq.push([‘_require’, ‘inpage_linkid’, pluginUrl]);
_gaq.push([‘_setAccount’, ‘UA-XXXXXX-Y’]);
_gaq.push([‘_trackPageview’]);
So I don’t think the solution of adding it before or after would work. It looks like it requires modification.