I had a conflict with this mod and another custom mod I had which also uses jQuery. This may help some others that may have similar conflicts.
In order to get the two to both work I had to make a couple changes.
I needed to add this line below the current script in Step 1:
Code:
<script type="text/javascript"> jQuery.noConflict() </script>
Then replace all "$" with "jQuery" in Step 2 code to this:
Code:
<script type="text/javascript">
jQuery(".popupmenu").hover(
function () {
jQuery(this).find( '.popupbody' ).show();
},
function () {
jQuery(this).find( '.popupbody' ).hide();
}
);
</script>