	var myGallery = false;
	var isPaused = 0;
function startGallery() {
myGallery = new gallery($('myGallery'), {
timed: true
});
}
window.addEvent('domready', startGallery);
    function selectGallery(ndx) {
    myGallery.goTo(ndx);
    myGallery.clearTimer();
    isPaused = 1;
    document.getElementById('pausebutton').src = 'images/pause.png';
  }

  function resumeGallery() {
    myGallery.prepareTimer();
    myGallery.doSlideShow();
  }

  function pauseGallery() {
    myGallery.clearTimer();
  }

  function PausePlayGallery() {
    if (isPaused == 0)
    {
    pauseGallery();
    isPaused = 1;
    document.getElementById('pausebutton').src = 'images/play.png';
    }
  else
    {
    resumeGallery();
    isPaused = 0;
    document.getElementById('pausebutton').src = 'images/pause.png';
    }
  }

