function goToPhoto(photoNumber) {
	// Get the current photo
	currentPhoto = $("#photoNumber").val();
	
	$(".homePhotosNavItem").removeClass('on');
	$("#homePhotosNavItem" + photoNumber).addClass('on');
	
	$("#photoNumber").val(photoNumber);
	
	if (currentPhoto > photoNumber) {
		$("#photo"+currentPhoto).animate({'left':'694px'}, 750);
		$("#photo"+photoNumber).css({'left':'-694px', 'display':''});
		$("#photo"+photoNumber).animate({'left':'0px'}, 750);
	} // end of if
	else {
		$("#photo"+currentPhoto).animate({'left':'-694px'}, 750);
		$("#photo"+photoNumber).css({'left':'694px', 'display':''});
		$("#photo"+photoNumber).animate({'left':'0px'}, 750);
	} // end of else
	
} // end of goToPhoto function
