	// Get from server :
	JP1   = "713224&292561&1227439&2008543&125372&4079627&12310044&3061390&4889683&42927812&11390020&".split("&");
	Inc1  = "5&1&9&3&1&1&14&2&3&8&1&".split("&");
	NumberOfProgr = JP1.length;

	JP = new Array(10);
	Inc = new Array(10);
	
	for (i = 10-1; i>=0; i--) { // shift
		JP[i+1] = JP1[i];
		Inc[i+1] = Inc1[i];
	}

	for (i=1;i<=10;i++){
		JP[i]=parseInt(JP[i]);
		Inc[i]=parseInt(Inc[i]);
		if (Inc[i] < 0) Inc[i] = 0;
	}

	/////////////////////////////////////////////////////////////
	
	var round = 0;
	var pos = 0;

	function num2dollar(field){ 
	   var tmp1 = cents = dollars = "";
	   var dec = -1;
	   var num,i;
	
	   num = "" + (Math.round(field * 100)/100);
	   dec = num.indexOf(".");
	
	   cents = ((dec > 0) ? num.substring(dec,num.length) : ".00");
	   if (cents.length == 2) cents += "0";
	
	   dollars = "" + parseInt(num);
	   tmp1 = insComma(dollars);
	   num = "$"; //dollar sign
	   for (i = tmp1.length-1; i >= 0; i--) 
	   num += tmp1.charAt(i);;
	   num +=  cents + "";
	  
	   return num;
	}
	
	function insComma(data){
	   var count = i = 0;
	   var tmpStr = "";
	   var comma = ",";
	
	   for (i = data.length-1; i >= 0; i--) 
	   {
	      if (count == 3)
	      {
	         tmpStr += comma;
	         count = 1;
	      }
	      else  count ++;
	      tmpStr += data.charAt(i);
	   }
	   return(tmpStr);
	}
	
	function ScrollProgressiveCounters(){
		var i,jj,fieldname;
		if (!document.forms.jpform) {
			return;
		}
		
		for  (i=1; i<=NumberOfProgr; i++ ) {
			JP[i] += (Inc[i]); // jackpot value in cents
			fieldname = "progressive"+i;

			for (jj=0; jj<document.forms["jpform"].elements.length; jj++) {
				if (document.jpform.elements(jj).name == fieldname) {
					document.jpform.elements(jj).value = num2dollar(JP[i]/100 );
				}
			}
		}
		window.setTimeout( "ScrollProgressiveCounters()",1000); 
	}
	
	
	function CounterActivator() {
		if (document.jpform) {
			ScrollProgressiveCounters();
			clearTimeout(CounterInterval);
		}else{
			CounterInterval = setTimeout( "CounterActivator()",250);
		}
	}	
	
	CounterActivator();
	//