// JavaScript Document

Images = new Array();

Images[12] = new Image(); 
Images[12].src = "images/arrow-red.jpg";

Images[13] = new Image(); 
Images[13].src = "images/arrow.jpg";








function set_status(string) {
	window.status = string;
}

function reset_status() {
	window.status = 'Pimpalicious Living';
}

function swapIn(index, id) {
	document.getElementById(id).src = Images[index].src;
}

function swapOut(index, id) {
	document.getElementById(id).src = Images[index].src;
}



