// LORAN DONELSON 
function rockSteady() {
	tree_a = new Array(4);
	tree_b = new Array(4);
	tree_c = new Array(4);

	
	tree_a[0] = "frog/word_a1.gif";
	tree_a[1] = "frog/clear.gif";
	tree_a[2] = "frog/clear.gif";
	tree_a[3] = "frog/clear.gif";
	
	tree_b[0] = "frog/word_b1.gif";
	tree_b[1] = "frog/picturel.jpg";
	tree_b[2] = "frog/clear.gif";
	tree_b[3] = "frog/clear.gif";
	
	tree_c[0] = "frog/word_c1.gif";
	tree_c[1] = "frog/picturer.jpg";
	tree_c[2] = "frog/pharisi.gif";
	tree_c[3] = "frog/han.gif";
	
	

}

rockSteady();

var index = 1;

function danceyourmagicpixels() {

	if (index == 4) index = 0;
	
	document.images["one"].src = tree_a[index];
	document.images["two"].src = tree_b[index];
	document.images["three"].src = tree_c[index];
	
	index++;
}
