var myGallery;		
  var isPaused = 0;	
  var isPausedM = 0;	
  function startGallery() {
        myGallery = new gallery($('myGallery'), {
          fadeDuration: 300,
     			delay: 5000,
     			showArrows: true,
          timed: true
      });	
  }		
  window.addEvent('domready',startGallery);
	function resumeGallery() {
		myGallery.prepareTimer();
		myGallery.doSlideShow();
		isPaused = 0;
		document.getElementById('pauseButton').src = '/images/pause_button.png';
	}
  function pauseGallery() {
		myGallery.clearTimer();
		isPaused = 1;
		document.getElementById('pauseButton').src = '/images/play_button.png';	
  }
	function PausePlayGallery() {
  	if (isPaused == 0)
  		{
		    pauseGallery();
  		}
		else
  		{
  			resumeGallery();
  		}
	}			
	function PausePlayMusic() {
	if (isPausedM == 1)
		{					   
	    isPausedM = 0;					
	    document.getElementById('pauseButtonM').src = '/images/music_button.png';		
		}		
	else
		{		    		
			isPausedM = 1;
			document.getElementById('pauseButtonM').src = '/images/music_buttonM.png';		    			
		}
	}	