DynAPI.setLibraryPath('/inc/lib/');
DynAPI.include('dynapi.api.*');
DynAPI.include('dynapi.event.*')
DynAPI.include('dynapi.util.thread.js')
DynAPI.include('dynapi.util.pathanim.js')
DynAPI.include('dynapi.gui.dynimage.js')
DynAPI.include('dynapi.gui.button.js')
DynAPI.include('dynapi.gui.scrollbar.js')
DynAPI.include('dynapi.gui.viewport.js')
DynAPI.include('dynapi.gui.scrollpane.js')
DynAPI.include('dynapi.gui.label.js')

var imageFolder;

function showImage(name,title,caption,details) {
    document.getElementById('mainImage').src='images/'+name+'.jpg'
    document.getElementById('title').innerHTML=title
    document.getElementById('caption').innerHTML=caption
    document.getElementById('details').innerHTML=details
}
var homescroll
//
// Define menu here
//
DynAPI.onLoad=function() {
  var w=''+window.location
  if(w.indexOf('#')) {
    selectImage(w.substr(w.indexOf('#')+1))
  }
}