if (document.images) {

	eye_normal = new Image();
	eye_goof = new Image();
	
	eye_normal.src = "_images/home-tim-photo-b.jpg";
	eye_goof.src = "_images/home-eyeball-goof2.gif";
	
}

function eyeSwitchOn() {
	if (document.images) {
		document['photo-tim'].src = eye_goof.src
		}
	}

function eyeSwitchOff() {
	if (document.images) {
		document['photo-tim'].src = eye_normal.src
		}
	}

function openMe() {

	window.open('radio/spots.html','radio','toolbar=yes,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=500,height=350');

}

