Great! That worked, now how meany gallerys can i put on one page?

No I don`t Use Safari
I put up the page with the config issue http://1nj.org/photo.html, as you can see i changed both xml files to config using the baseUr method . My folder in named Juicebox my gallery folders are ValleyForge2017 and Germantown2017
also I see single quotes and double quotes being used in other examples witch is correct?

<!--START JUICEBOX EMBED-->
<script src="Juicebox/jbcore/juicebox.js"></script>
<script>
    new juicebox({
        baseUrl: 'config.xml',
        containerId: 'juicebox-ValleyForge2017',
        galleryWidth: '800',
        galleryHeight: '600',
        backgroundColor: "#222222"
    });
</script>
<div id="juicebox-ValleyForge2017"></div>

</tr>
<table border="0" width="100%" cellspacing="10" cellpadding="5">

  <tr>

<script>
    new juicebox({
    baseUrl: 'config.xml',
        containerId: 'juicebox-Germantown2017',
        galleryWidth: '800',
        galleryHeight: '600',
        backgroundColor: "#222222"
    });
</script>
<div id="juicebox-Germantown2017"></div>
<!--END JUICEBOX EMBED-->

I`ve read over past posts about the config file not found. I`ve tried some of your methods with limited success. I managed to get one gallery to work but a want to put several gallery's on one HTML page. I have separate folders for each gallery and an outside jb-core folder
I looked at your gallery examples, and in your folder string I don`t see the config file were is it?

Here is the code string I`m using  any help you can give me would be great

       <tr><!--START JUICEBOX EMBED-->
<script src="Juicebox/jbcore/juicebox.js"></script>
<script>
    new juicebox({
        baseUrl: 'ValleyForge2017',
    containerId: 'juicebox-ValleyForge2017',
        galleryWidth: '800',
        galleryHeight: '600',
        backgroundColor: "#222222"
    });
</script>
<div id="juicebox-ValleyForge2017"></div>

</tr>
<table border="0" width="100%" cellspacing="10" cellpadding="5">

  <tr>

<script>
    new juicebox({
    baseUrl: 'Germantown2017',
        containerId: 'juicebox-Germantown2017',
        galleryWidth: '800',
        galleryHeight: '600',
        backgroundColor: "#222222"
    });
</script>
<div id="juicebox-Germantown2017"></div>
<!--END JUICEBOX EMBED-->


  </tr>
 
</table>