function showPhoto(photoName){
	document.getElementById('large_photo').src = 'images/' + photoName + '.jpg';
}

function thumbOver(){
	document.body.style.cursor = 'pointer';
}

function thumbOut(){
	document.body.style.cursor = 'default';
}