
if(isPaused == undefined) {
		var isPaused = new Array();
}

function PausePlayGallery(id) 
{		
	if (isPaused[id] != 1)
	{
		$( '#gallery'+id ).cycle('pause');
		isPaused[id] = 1;
		$('#pausebutton'+id ).attr('src', '/.composer/modules/media/SmoothGallery/css/img/play.gif');
	}
	else
	{
		$( '#gallery'+id ).cycle('resume');
		isPaused[id] = 0;
		$( '#pausebutton'+id ).attr('src', '/.composer/modules/media/SmoothGallery/css/img/pause.gif');
 	}
}


function showPause(id)
{
	$( "#ppButtons"+id ).css('display', 'block');
}

function hidePause(id)
{
	if(isPaused[id] == 0)
		$( "#ppButtons"+id ).css('display', 'none');
}

function clickGallery( id )
{
	if (isPaused[id] != 1) {
		PausePlayGallery( id );
		clickedGallery = id;
		$('#lbCloseLink').click( resumeGalleryAfterLightbox )  ;
	} else {
		clickedGallery = 0;
	}	
}

function resumeGalleryAfterLightbox() {
	if( clickedGallery != 0 ) {
		PausePlayGallery( clickedGallery );
		hidePause( clickedGallery );
	}
}