//*dtm animation*
	var isDtnAnmBgn=-1;
	var DTMdelay = 1000;//1sec =1000
	var nbrIdToShw = -1;//first
	var prvsNmbrIdtoShw;
	var theTDA = new Array();
	var theTDActn = new Array();
	var trnsDrtn = 4;
	var stIntrvFrActnBgn;
	var isToStrtABck = -1;

	function fltrCnge(){
		if(isToStrtABck <0){
			isToStrtABck = 1;
			showDTMactn();
			toDfltAclr();
		}
		else{
			isToStrtABck = -1;
			isDtnAnmBgn = -1;
		}
	}

	function toDfltAclr(){
		theTDA[nbrIdToShw].filters.blendTrans.Apply();
		theTDA[nbrIdToShw].bgColor="#CEFF9C";
		theTDA[nbrIdToShw].filters.blendTrans.Play();
	}
	function strtDtmAnim(){
		theTDA[1]= tda1;
		theTDA[2]= tda2;
		theTDA[3]= tda3;
		theTDActn[1]=tdactn1;
		theTDActn[2]=tdactn2;
		theTDActn[3]=tdactn3;
		prvsNmbrIdtoShw = nbrIdToShw;
		for(i1=1; i1<4; i1++){
			theTDA[i1].filters.blendTrans.duration=trnsDrtn;
		}		
		window.setInterval('DTManimate()',DTMdelay);
	}
	
	function DTManimate(){
		var tmpRnd;
		var tmpRound;
		if(isDtnAnmBgn <0){
			isDtnAnmBgn =1;
			tmpRound = nbrIdToShw;
			while(tmpRound==nbrIdToShw){
				tmpRndm = Math.random();
				tmpRndm = tmpRndm*2.9 + 0.51;//between 3.41 and 0.51
				tmpRound = Math.round(tmpRndm);
			}
			nbrIdToShw = tmpRound;
			bgnRdGrw(nbrIdToShw);
		}
	}
	function bgnRdGrw(idAmBRG){
		theTDA[idAmBRG].filters.blendTrans.Apply();
		theTDA[idAmBRG].bgColor="#FFCF9C";
		theTDA[idAmBRG].filters.blendTrans.Play();
	}
	
	function showDTMactn(){
		if(prvsNmbrIdtoShw>0){
			theTDActn[prvsNmbrIdtoShw].bgColor="#FFFFFF";
		}
		prvsNmbrIdtoShw = nbrIdToShw;
		theTDActn[nbrIdToShw].bgColor="#00008B";
	}

