if you edit the actual plugin in the admincp and make the changes to both instances (because he is using a if else conditional) it should work.
It appears it's in the
HTML Code:
<title>Code replace</title>
<hookname>parse_templates</hookname>
plugin for the product.
--------------- Added [DATE]1326251138[/DATE] at [TIME]1326251138[/TIME] ---------------
Code:
<vb:if condition="$forum[islastshown]">
<script>
$("#scanudesc a[title]").tooltip({
position: "bottom right",
effect: "slide"
});
</script></vb:if><vb:else />
<script>
$("#scanudesc a[title]").tooltip({
position: "bottom right",
effect: "slide"
});
</script>
</vb:if>
The code could use some work.
--------------- Added [DATE]1326251193[/DATE] at [TIME]1326251193[/TIME] ---------------
Although its possible it won't work because the prototype code is called before the jQuery....