﻿$(document).ready(function () {
	$('#show-content').click(function () {
		$('.hidden-content').slideToggle('fast', function () {
			$("#show-content").text($(this).is(':visible') ? "Less" : "More");
		});
	});
});
