// JavaScript Document

//function to display a photo
function showPhoto (whichPhoto) {
if (document.getElementById) {
	document.getElementById('placeholder').src = 'photos/placeholder.gif';
	document.getElementById('placeholder').src = whichPhoto.href;
	if (whichPhoto.title) {
		document.getElementById('desc').childNodes[0].nodeValue = whichPhoto.title;
	}
	else {
		document.getElementById('desc').childNodes[0].nodeValue = whichPhoto.childNodes[0].nodeValue;
	}
	return false;
	}
	else {
		return true;
	}
}

//rollover stuff for little man
if (document.images) { 
	manOn = new Image();
	manOn.src = "i_Shared/man_oj.gif";
	manOff = new Image();
	manOff.src = "i_Shared/man_white.gif";
}

function imgOn (imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "On.src");
	}
}

function imgOff (imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "Off.src");
	}
}

//video popup
function rollVideo(url) {
	SlipperyVideo=window.open(url,"SlipperyVideo","width=300,height=240,toolbar=no,menubar=no,status=yes,scrollbars=no,location=no,resize=0,left=10,top=10");
	SlipperyVideo.focus();
}
