$( function () {

		$( '#controller-help a').click( function () {

				$(this).blur();

				if ( $('#help-panel').is(':visible') ) {
					$('#help-panel').hide();
					return false;
				}

				if ( $('#help-panel').length == 0 ) {
					$( '#controller').after ( '<div id="help-panel"></div>' );				
				}

				$('#help-panel').show();

				var uri = $(this).attr('href');
				uri = uri.substr(6);

				$('#help-panel').load ( '/help/q/' + uri );
				
				return false;

			});


	});