I got it working......

Here was my final code.......

<!--START JUICEBOX EMBED-->
<script src="gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl: "gallery/",
containerId: "juicebox-container",
galleryWidth: "800",
galleryHeight: "600",
backgroundColor: "rgba(34,34,34,1)"
});
</script>
<div id="juicebox-container" style="margin: 0 auto;"></div>
<!--END JUICEBOX EMBED-->

I embedded into my webpage, but I can not get the Autoplay or randomizeImages to work.

www.kb2mxv.com

If I run the index.html form the directory on my website where all the juicebox files are, that gallery works as it should.

http://kb2mxv.com/gallery/

This is the embedd code I'm using on my webpage
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl : 'gallery/',
containerId: "juicebox-container",
galleryWidth: "800",
galleryHeight: "600",
autoPlayOnLoad: "TRUE",
useThumbDots: "FALSE",
showThumbsButton: "FALSE",   
randomizeImages: "TRUE",
enableLooping: "TRUE",
enableAutoPlay: "TRUE",
showAutoPlayButton: "TRUE",
goNextOnAutoPlay: "TRUE",
backgroundColor: "rgba(34,34,34,1)"
});
</script>
<div id="juicebox-container" style="margin: 0 auto;"></div>
<!--END JUICEBOX EMBED-->