Topic: 2 galleries in one html page
Hi,
I'm trying to fit 2 galleries under each other in one html page. When I view the page in the browser the first gallery shows up
but the second one does not... Please help me, this is my code:
<div id="medal_gallery">
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="http://www.sundaradesign.com.au/responsive_site/gallery_medals/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
simpleviewer.ready(function () {
SV.simpleviewer.load('sv-container1', '90%', '90%', '000000',true,{baseURL: 'http://www.sundaradesign.com.au/respons … ry_medals/'});
});
</script>
<div id="sv-container1"></div>
<!-- END SIMPLEVIEWER EMBED -->
</div>
<div id="coin_gallery">
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="http://www.sundaradesign.com.au/responsive_site/gallery_coins/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.baseURL = "http://www.sundaradesign.com.au/respons … lery_coins";
simpleviewer.ready(function () {
SV.simpleviewer.load('sv-container2', '90%', '90%', '000000',true, flashvars);
});
</script>
<div id="sv-container2"></div>
<!-- END SIMPLEVIEWER EMBED -->
</div>
Thank you!