//################################################################################
//# Dacio's slideshow v1.0
//# Copyright 2006 by Dacio            dacio30@gmail.com
//# Created 07.05.2006
//# Dacio's JS scripts                http://kepicaidej.underground.si
//#
//# This script is free to use and modify. 
//# Email me if u find it useful at http://kepicaidej.underground.si/?kontakt=mail
//#
//# Change below to suit your needs
//#
//################################################################################
//# See readme.txt for more info
//################################################################################

// Configuration
var eatMe = 1;	//starting point
var nrPict = 13;	//number of all pictures in slideshow
var flip_time = 2000;	//time in miliseconds; 1s = 1000ms

// Functions
function makeArray() {
        this.length = makeArray.arguments.length
        for (var i = 0; i < this.length; i++) this[i+1] = makeArray.arguments[i]
}

function flipper() {
        document.image.src = teams[eatMe];
        eatMe += 1;
        if (eatMe == (nrPict+1)) eatMe = 1;
                setTimeout("flipper()", flip_time);	//change picture
}
// List of links to pictures

var teams = new makeArray (
"/mhs pictures 3/S_AUSTIN  3.jpg",
"/mhs pictures 3/S_Curie 1.jpg",
"/mhs pictures 3/S_Farragut 2.jpg",
"/mhs pictures 3/S_Marshall 1.jpg",
"/mhs pictures 3/S_Marshall Boys 2.jpg",
"/mhs pictures 3/S_Marshall Boys 3.jpg",
"/mhs pictures 3/S_Marshall Boys 5.jpg",
"/mhs pictures 3/S_Marshall boys 1.jpg",
"/mhs pictures 3/S_Patrick Henery 1.jpg",
"/mhs pictures 3/S_Patrick Henery.jpg",
"/mhs pictures 3/S_Simeon 1.jpg",
"/mhs pictures 3/S_westinghouse 1.jpg",
"/mhs pictures 3/S_westinghouse 2.jpg"
);
