window.onload = init;


rnd.today=new Date();
rnd.seed=rnd.today.getTime();

var counter = 11;

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
}

function rand(number) {
        return Math.ceil(rnd()*number);
}



function init()
{
	var nav = document.getElementById('mouseovers');
	
	nav.onclick = mouseC;
	
	//nav.onmouseout = mouseGoesOut;
	
}


function mouseC()
{
	var picture = document.getElementById('mouseovers');

	counter = counter + 1;

//var number = rand(3);
    picture.src = "../Pics/installationOfOfficers/" + counter + ".jpg"; 
	//picture.width = 400;
	//picture.height = 300;
	
	if( counter == 16)
		{
			counter = 10;		//Resets counter
		}
}




function mouseGoesOut()
{
	counter = 10;
}


