
/* 

  ================================================
  PVII Slide Show scripts
  Copyright (c) 2007 Project Seven Development
  Version: 1.2.3 -version build 4-29b
  TWEAK #207 : ARRET SLIDESHOW A LA DERNIERE IMAGE
  ================================================

*/

function P7_SSMdispFin(){
	var x,pI;
	p7ssmfrst=false;
	p7ssmbusy=false;
	if(p7ssmmode=='auto'){
		x=p7sscur;
		x++;
		if(x<0||x>=p7sstmb.length){
			x=0;
			P7_SSMpause();
    		return;
		}
		if(P7ssma[7]==1){
			pI=document.p7sspre[x];
			if(!pI.cmp){
				pI.src=p7sstmb[x].href;
			}
		}
		p7ssmtimer=setTimeout("P7_SSMtrig()",P7ssma[8]*1000);
	}
}