﻿$(document).ready(function() {
    $('#HideCaption').click(function() {
        $('div.ImageCaption').hide();
        $('div.ImageCaptionHide').hide();
        $('div.ImageCaptionShow').show();
    });

    $('#ShowCaption').click(function() {
        $('div.ImageCaption').show();
        $('div.ImageCaptionHide').show();
        $('div.ImageCaptionShow').hide();
    });

});