// JavaScript Document
     colors2 = new Array(6); 
     colors2[0]="#000000";
     colors2[1]="#333300";
     colors2[2]="#665500";
     colors2[3]="#997700";
     colors2[4]="#CC9900";
     colors2[5]="#FFCC00";

     var cnt = 0;
     var flashobjnum = 0;
     var flashobjarr = new Array(10);
     function Init() {
         flashobjnum = 0;

     }
     var curpos = 0;
     function AddFlashEle(flashEleID) {
         flashobjarr[curpos] = flashEleID;
         curpos++;
     }
     var timerID2;
     function Start() {
         timerID2 = setInterval('FlashFont()', 100);
         
     }
     function Stop() {
         clearInterval(timerID2);
     }
     function FlashFont() {
         for (i = 0; i < curpos; i++) {
             var obj = document.getElementById(flashobjarr[i]);
             obj.style.color = colors2[cnt];

         }
         cnt++;
         cnt = cnt % 6;
     }
	 
     function fLi2() {
            
             if (cnt<6) {
			 //ugly
			 var obj = document.getElementById("freediv");
			 var obj1 = document.getElementById("freediv1");
			 		//var obj = MM_findObj1("freediv");
					//var obj1 = MM_findObj1("freediv1");
					obj1.style.color = colors2[cnt];
                     obj.style.color = colors2[cnt];
					 cnt++;
                     cnt=cnt%6;
                     timerID2 = setTimeout( "fLi2()", 100);
             }
             
       }
	   