$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#license-bundle').hide();
  
 // shows and hides and toggles the slickbox on click  
  $('#toggle-bundle').click(function() {
    $('#license-bundle').toggle(400);
    return false;
  });
 
});

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#license-recorder').hide();
  
  $('#toggle-recorder').click(function() {
    $('#license-recorder').toggle(400);
    return false;
  });
 
});

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#license-observer').hide();
  
  $('#toggle-observer').click(function() {
    $('#license-observer').toggle(400);
    return false;
  });
  
});

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#license-manager').hide();
  
  $('#toggle-manager').click(function() {
    $('#license-manager').toggle(400);
    return false;
  });

});