﻿
$(function () {
    $('.wide').columnize({ width: 270 });
});

$(document).ready(function () {
    // hides the slickbox as soon as the DOM is ready
    $('#hiddencontent').hide();

    // toggles the slickbox on clicking the noted link  
    $('#hiddencontent-toggle').click(function () {
        $('#hiddencontent').toggle(600);
        return false;
    });
});
