var imgs = [["fp-still-life.jpg",'#ffffff'],			["fp-storefront-model.jpg", "#ffffff"],			["fp-all-the-worlds.jpg",'#ffffff'],			["fp-kristis-deer.jpg", "#000000"],			["fp-all-the-worlds-2.jpg",'#ffffff'],			["fp-the-explorers.jpg", "#ffffff"],			["fp-kristis-eagle.jpg", "#ffffff"],			["fp-you-are-a-disappointment-to-yourself-and-others-3.jpg",'#000000'],			["fp-sayas-sink.jpg",'#ffffff'],			["fp-the-dream-2.jpg",'#ffffff'],			["fp-green-house-gray-house-2.jpg",'#ffffff'],			["fp-you-are-a-disappointment-to-yourself-and-others.jpg",'#000000'],			["fp-bound.jpg",'#ffffff'],			["fp-the-reader.jpg",'#ffffff'],			["fp-cherry-with-exoskeleton.jpg",'#ffffff'],			["fp-the-dream.jpg",'#ffffff'],			["fp-cranes-and-snow.jpg",'#ffffff'],			["fp-you-are-a-disappointment-to-yourself-and-others-4.jpg",'#000000'],			["fp-the-dream-3.jpg",'#ffffff'],			["fp-lamps.jpg",'#ffffff'],			["fp-garage-doors.jpg",'#ffffff'],			["fp-green-house-gray-house.jpg",'#ffffff'],			["fp-robyn-o-neil-oh-how-the-heartless-haunt-us-all.jpg",'#ffffff'],			["fp-the-dream-4.jpg",'#ffffff'],			["fp-kyra-and-lynzi.jpg",'#ffffff'],			["fp-circles.jpg",'#ffffff'],			["fp-you-are-a-disappointment-to-yourself-and-others-2.jpg",'#000000'],			["fp-robyn-o-neil-wall-text.jpg",'#ffffff'], 			["fp-anemic-drawing1.jpg",'#000000'],			["fp-85-this-is-full-potential.jpg",'#000000']];function getNextImage() {	var index = undefined;	var cookies = document.cookie.split(";");	for (var i=0; i<cookies.length; i++) {		var parts = cookies[i].split("="),			key = parts[0].replace(/^\s+|\s+$/, ""),			value = (parts[1] || "").replace(/^\s+|\s+$/, "");		if (key == "imageIndex") {			index = parseInt(value);			break;		}	}		if (undefined == index || isNaN(index)) {		index = -1;	}		index++;		if (index > imgs.length - 1) {		index = 0;	}		document.cookie = "imageIndex=" + index;	return imgs[index];}window.onload = function() {	var selection = getNextImage();	FullScreenImage(rootVirtual + "/public/img/fp/" + selection[0]);	document.body.style.color = selection[1];};
