// JavaScript Document
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
$('#stretch').hide();
 // shows the slickbox on clicking the noted link
$('a#slick-show').click(function() {
 $('#stretch').show();
 return false;
});
$('a#slick-hide').click(function() {
 $('#stretch').hide();
 return false;
});
$('a#slick-toggle').click(function() {
 $('#stretch').toggle();
 return false;
});
});
