	$(function() {
		var strCurrentID = '#text-dance-confidence';
		$('#text-dance-confidence').show();
		$('#text-dance-coordination').hide();
		$('#text-dance-listening').hide();
		$('#text-dance-rhythm').hide();
		$('#text-dance-gettingon').hide();

		$("#btn-hint-1").click(function() {
			$(strCurrentID).hide();
			$('#text-dance-confidence').show();
			strCurrentID = '#text-dance-confidence';
			$('#layout-hint-panel').removeClass();
			$('#layout-hint-panel').addClass('layout-hint-panel-1');
			return false;
		});
		$("#btn-hint-2").click(function() {
			$(strCurrentID).hide();
			$('#text-dance-coordination').show();
			strCurrentID = '#text-dance-coordination';
			$('#layout-hint-panel').removeClass();
			$('#layout-hint-panel').addClass('layout-hint-panel-2');
			return false;
		});
		$("#btn-hint-3").click(function() {
			$(strCurrentID).hide();
			$('#text-dance-listening').show();
			strCurrentID = '#text-dance-listening';
			$('#layout-hint-panel').removeClass();
			$('#layout-hint-panel').addClass('layout-hint-panel-3');
			return false;
		});
		$("#btn-hint-4").click(function() {
			$(strCurrentID).hide();
			$('#text-dance-rhythm').show();
			strCurrentID = '#text-dance-rhythm';
			$('#layout-hint-panel').removeClass();
			$('#layout-hint-panel').addClass('layout-hint-panel-4');
			return false;
		});
		$("#btn-hint-5").click(function() {
			$(strCurrentID).hide();
			$('#text-dance-gettingon').show();
			strCurrentID = '#text-dance-gettingon';
			$('#layout-hint-panel').removeClass();
			$('#layout-hint-panel').addClass('layout-hint-panel-5');
			return false;
		});
	});