			$(document).ready(function() {
			 // hides the slickbox as soon as the DOM is ready
			$('#slickbox').hide();
			$('#slickbox2').hide();
			$('#slickbox3').hide();
			$('#slickbox4').hide();
			$('#slickbox5').hide();
			 
			// toggles the slickbox on clicking the noted link
			  $('#slick-toggle').click(function() {
			 $('#slickbox').toggle(400);
			 return false;
			  });
			// toggles the slickbox on clicking the noted link
			  $('#slick-toggle2').click(function() {
			 $('#slickbox2').toggle(300);
			 return false;
			  });
			// toggles the slickbox on clicking the noted link
			  $('#slick-toggle3').click(function() {
			 $('#slickbox3').toggle(300);
			 return false;
			  });
			// toggles the slickbox on clicking the noted link
			  $('#slick-toggle4').click(function() {
			 $('#slickbox4').toggle(300);
			 return false;
			  });
			// toggles the slickbox on clicking the noted link
			  $('#slick-toggle5').click(function() {
			 $('#slickbox5').toggle(300);
			 return false;
			});
			});

