﻿

var teamimg = new Array();
var playerimg = new Array();
    teamimg[0] = "algonac.jpg";
    teamimg[1] = "AnchorBay.jpg";
    teamimg[2] = "bulldog.jpg";
    teamimg[3] = "phwhith.jpg";
    teamimg[4] = "cros-lex.jpg";
    teamimg[5] = "lions.jpg";
    teamimg[6] = "phblue.jpg";
    teamimg[7] = "bulls.jpg";
    //teamimg[8] = ".jpg";
    //teamimg[9] = "saints.jpg";
    //teamimg[10] = "steelers.jpg";
    playerimg[0] = "Bulls.jpg";
    playerimg[1] = "catching.jpg";
    playerimg[2] = "cheer1.jpg";
    playerimg[3] = "cheer2.jpg";
    playerimg[4] = "team.jpg";
    playerimg[5] = "team1.jpg";
    playerimg[6] = "team2.jpg";
    playerimg[7] = "team3.jpg";
    var a=0;
    var b=0;
    function rotateimg(){

        document.getElementById("slideshow1").src = "teamimg/" + teamimg[a];
        document.getElementById("slideshow").src = "images/" + playerimg[b];
        b++;
        a++;
        if (a > 7) {
            a = 0;
        }
        if (b > 7) {
            b = 0;
            }
        setTimeout('rotateimg()', 2000);
        
    }

