This type of question is specifically excluded in the guidelines. But that just means that we aren't likely to help, not that we won't at least perhaps try.
As I'm sure you understand, something like this can be quite complex. But sometimes it can be rather simple. If it is just an onload event conflict, there are several ways to easily deal with it.
If that's all that it is, one way would be to remove:
Code:
window.onload=getcontent_height
from the Scrollable content II code, and replace it with:
Code:
if(window.addEventListener)
window.addEventListener('load', getcontent_height, false);
else if(window.attachEvent)
window.attachEvent('onload', getcontent_height);
If that fixes it, great! Otherwise, if you want more help:
Please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks