$(document).ready(function() {

	$('#hider').hide();
 
 // toggles the slickbox on clicking the noted link  
  $('a#shower').click(function() {
    $('#hider').toggle(400);
    return false;
  });
  

});