home *** CD-ROM | disk | FTP | other *** search
- var rotation = true;
-
- function coreAction() {
- if(rotation == true) {
- spinCore(screen_width-281, 0, 202, 101, 101);
- setTimeout("spinCore(screen_width-382, 0, 303, 101, 202)", 150);
- setTimeout("spinCore(screen_width-180, 0, 101, 101, 0)", 300);
- setTimeout("coreAction()", 450);
- }
- }
- function spinCore(left, cTop, cRight, cBottom, cLeft) {
- coreObj.left = left;
- if(nav == "ns4") {
- coreObj.clip.left = cLeft;
- coreObj.clip.right = cRight;
- } else {
- coreObj.clip = "rect(" + cTop + " " + cRight + " " + cBottom + " " + cLeft + ")";
- }
- }
-