jQuery(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  jQuery('#slickbox').hide();

 // toggles the slickbox on clicking the noted link
  jQuery('a#slick-toggle').click(function() {
	jQuery('#slickbox').slideToggle(400);
	$(this).text($(this).text() == 'Dölj «' ? 'Läs mer »' : 'Dölj «'); 
	return false;
  });
});



/*
<a id="slick-toggle" href="#">Läs mer »</a>
<div id="slickbox">
</div>
*/
