$(document).ready(function() {
	$('a.show-code').click(function() {
		// Act on the event
		$('.code-hide').toggle('slow');
		return false;
	});
});
