$(document).ready(function() {
	 // hides the slickbox as soon as the DOM is ready
	$("#slickbox").css("display","none");

	// Add onclick handler to checkbox w/id checkme
	$("#slick-toggle").click(function(){  
	  // If checked
	  if ($("#slick-toggle").is(":checked"))
	  {
		  //show the hidden div
		  $("#slickbox").show("slow");
	  }
	  else
	  {      
		  //otherwise, hide it 
		  $("#slickbox").hide("slow");
	  }  
	});

});

 
