/* =========================================================// rotor.js// copywrong (c)ccp 2008 Kim Xupei (http://www.n3krozoft.com/)========================================================= */function rotor(vator) {var n = vator;if ( n < 9 ) { // alert ( "n is: "+n );    document.Z.src = url+"x"+n+".jpg?" + Math.random();    n++; // increment    setTimeout('rotor('+n+')',1000);    }else  { // alert ( "n is: "+n+"!" );    document.Z.src = url+"x9.jpg?" + Math.random();    var n = 1; //optional    setTimeout('rotor('+1+')',1000);    }}