/*
		<!-- 
		
			'' 
			 '	Author: Bruno Rovito [x. 4421]
			 '	Date: 2007 / 01/ 05
			 '  
			 '
			 '  Log Modification -> Modifs
			 '	Log Author -> Bruno Rovito
			 '  Log Date -> 2007/02/19     
			'' 
		
		-->


*/


/*------- ILS ONT DIT -------*/
	
	//*** le code suivant est appelé dans -> /elections/federales2008/2007/19/001-IlsOntDit.shtml (fichier généré ) ****//
		//var ilsOntDitCourant = 0;
		//ilsOntDitCourant = Math.floor(Math.random()*6); // tracker scroll des elements ilsOntDit 
		//ilsOntDitCourant = (ilsOntDitCourant==0)?1:ilsOntDitCourant;
	
	
	// scrollIlsOntDit() -> pour pouvoir déplacer un objet/element/div de gauche à droite 
	function scrollIlsOntDit(pIdElement, pDirection, pTotalNumItems){
		// old
			DOM_changeProp(pIdElement+ilsOntDitCourant,'style.display', 'none');
		// config var
			if (pDirection == '<'){
				ilsOntDitCourant = (ilsOntDitCourant == 1) ? pTotalNumItems : ilsOntDitCourant-1;
			}else if (pDirection == '>'){
				 ilsOntDitCourant = (ilsOntDitCourant == pTotalNumItems) ? 1 : ilsOntDitCourant+1;
			}
		// new
			DOM_changeProp(pIdElement+ilsOntDitCourant,'style.display', 'block');
	}
	
	//*** le code suivant est appelé dans -> /elections/federales2008/2007/19/001-IlsOntDit.shtml (qui est généré par /elections/lib/federales2008/xslt/ilsOntDit.xsl) ****//
		// Affiche le premier commentaire
		 //DOM_changeProp("ilsOntDit"+ilsOntDitCourant,'style.display', 'block');
	
	
	

