You seemed to have solved this:
http://www.dynamicdrive.com/forums/s...4079#post54079
But the time stamp on that post is before the one on this post. If you are still having problems, the calls for individual galleries can be in separate script blocks:
Code:
<script type="text/javascript">
new cmotiongallery(gallery, 6, 7, 1000, 0, '50%', 225, 'c')
</script><br>
<script type="text/javascript">
new cmotiongallery(gallery2, 6, 7, 1000, 1, '50%', 225, 'c')
</script>
Or, if you want them to touch vertically:
Code:
<script type="text/javascript">
new cmotiongallery(gallery, 6, 7, 1000, 0, '50%', 225, 'c')
</script>
<script type="text/javascript">
new cmotiongallery(gallery2, 6, 7, 1000, 1, '50%', 225, 'c')
</script>
Or even:
Code:
<script type="text/javascript">
new cmotiongallery(gallery, 6, 7, 1000, 0, '50%', 225, 'c')
new cmotiongallery(gallery2, 6, 7, 1000, 1, '50%', 225, 'c')
</script>
If you want them side by side (don't use percentage width):
HTML Code:
<table style="border-collapse:collapse;" cellpadding="0" cellspacing="0">
<tr>
<td><script type="text/javascript">
new cmotiongallery(gallery, 6, 7, 1000, 0, 300, 225, 'c')
</script>
</td>
<td><script type="text/javascript">
new cmotiongallery(gallery2, 6, 7, 1000, 0, 300, 225, 'c')
</script></td>
</tr>
</table>
Bookmarks