
<!--
var numberOfImages = 35;
var currentImage = 0;
var locationOfImages = 'awards/objects/';
var browserok = false;
var browser = navigator.userAgent.substring(0,9);
if (browser == "Mozilla/3" || browser == "Mozilla/4") browserok = true;

theLinks
= new Array (
        "awards1.htm",
        "http://bounce.to/jteems",
        "http://www.flash.net/~pavdogs",
        "http://www.geocities.com/Heartland/Plains/1776/G.parent.htm",
        "http://3moons.hypermart.net",
        "http://www.something-fishy.com/",
        "http://www.geocities.com/EnchantedForest/3278/",
         "http://members.aol.com/scarspub/scars.html",
        "http://www.abutton.com/award/Judges.html",
        "http://www.public.usit.net/angelfre/THEARK.HTML",
        "http://www.public.usit.net/angelfre/FAVS.HTML",
        "http://metalhead.azaccess.com/~wall5/design.html",
        "http://www.market-tek.com",
        "http://www.metrolink.net/~lrice/petsite.htm",
        "http://www.geocities.com/TimesSquare/7311/",
        "http://www.geocities.com/Heartland/Plains/1776/G.parent.htm",
        "http://www.dewa.com/award.html",
        "awards1.htm",
        "http://altern.org/GraffitIt/",
        "http://home.sol.no/janpl/",
        "http://users.accessus.net/~rayr/award/",
        "http://www.web2010.com/bobbywat/",
        "http://www.htmlhaven.com/graphx/",
        "http://www.geocities.com/Hollywood/Boulevard/7660",
        "http://www.geocities.com/EnchantedForest/3278/",
        "http://quatec.com",
        "awards2.htm",
        "http://www.faeryhill.com/",
        "http://www.geocities.com/SiliconValley/Heights/9212/cyber.htm",
        "http://www.eclipse.st/eclipse.html",
        "http://www.vr-mall.com/bpicks/picks.html",
        "http://www.geocities.com/Paris/LeftBank/9874/",
        "http://members.tripod.com/~MaLi1721/",
        "http://www.2ask.com/syn23/link/Arts_and_Entertainment/Animation/",
        "http://members.xoom.com/doctorfrog"


);

function rotateImage(increment) {
        
        currentImage = ((currentImage + numberOfImages) + parseInt(increment))
% numberOfImages;

        if (browserok==true) {
                document.images['theAward'].src = locationOfImages +
currentImage + '.jpg';
                }
                document.links[6].href = theLinks [currentImage];
        return false;
};

function wait() {

                setTimeout("pushit()", 3000);
                
};              
        

        
function pushit() {

                
                rotateImage(1);
                
                setTimeout("pushit()", 6000);

}

// -->
