$(function() {
$('#topCampaign').hide();
    // toggles the slickbox on clicking the noted link
$('#toolbeltfold').click(function() {
    $('#topCampaign').slideToggle(500);
        return false;
    });
});

/* Removes white 'flig' when the width of the windows is less than 1220 px */
jQuery.event.add(window, "load", resizeFrame);
jQuery.event.add(window, "resize", resizeFrame);
function resizeFrame() {
  var h = $(window).height();
  var w = $(window).width();
  $("#toolbeltfold").css('height', (w > 1220) ? 255 : 0);
}