I have this code working perfectly fine on a page:
<script>
$(window).load(function() {
ThumbnailScroller("tsv_container","vertical",40,800,"easeOutCirc",0.4,500);
});
</script>
<script type="text/javascript" src="jquery.thumbnailScroller.js"></script>
It doesn't however work, when i load this page into a div on another page.
I tried putting this code on the parent page with the div, but it still doesn't work. Can anyone tell me how to fix it so that the code runs on the parent page?