﻿$(function () {
    $('#PageHelp').hide();
    $('a#HelpLink').click(function () {
        $('#PageHelp').toggle('fast');
    });
});


