$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $("body").removeClass("nojs").addClass("js");  
  $('#catagories').hide();
 
 $('#slick-slidetoggle').click(function() {
    $('#catagories').slideToggle(400);
    return false;
  });
 
  $('#toggle_all').click(function() {
    $('#all').show();
    return false;
  });
  
 $('#toggle_drama').click(function() {
	$('#all,#drama,#arts,#documentary,#childrens,#current-affairs,#feature,#short-film,#commercials,#education,#news,#news-features,#sport,#corporate,#awards').hide();
    $('#drama').slideToggle(400);
    return true;
	
  });
 
});
