﻿
$(document).ready(function() {
  
    // hides the slickbox as soon as the DOM is ready
   
    // (a little sooner than page load)

    $('#images-upload').hide();
   

  

    // toggles the slickbox on clicking the noted link

    $('a#imgShowHide').click(function() {

        $('#images-upload').toggle(400);

        return false;

    });

});


