// JavaScript Document

	
function showThis(selection){
	$(selection).removeClass("hide").addClass("show");
}
	
function hideThis(selection){
	$(selection).removeClass("show").addClass("hide");
}
