﻿function showInfo() {
	$("#info").show();
	$("#infoButton").hide();
}

function hideInfo() {
	$("#info").hide();
	$("#infoButton").show();
}