Your gallery at http://www.peterotoole.me/phone/design.html includes the following code:
<script src="http://meowcreative.businesscatalyst.com/phone/home_page_mobile/jbcore/juicebox.js"></script>
baseUrl : 'http://meowcreative.businesscatalyst.com/phone/home_page_mobile/',
All gallery files should be on the same domain or subdomain as the page into which the gallery is being embedded due to the JavaScript same origin policy.
It looks like you have uploaded your gallery folder to your www.peterotoole.me domain so just change the paths in your embedding code as follows and your gallery should display fine.
<script src="http://www.peterotoole.me/phone/home_page_mobile/jbcore/juicebox.js"></script>
baseUrl : 'http://www.peterotoole.me/phone/home_page_mobile/',
Alternatively, you could use relative paths within your embedding code as follows:
<script src="home_page_mobile/jbcore/juicebox.js"></script>
baseUrl : 'home_page_mobile/',