$(document).ready(function() {
	// toggles the slickbox on clicking the noted link  
	$('a.slick-toggle').click(function() {
		$(this).next('div').slideToggle();
		return false;
	});


});

