// JavaScript Document

$(document).ready(function() {
	 // hides the slickbox as soon as the DOM is ready
	 // (a little sooner than page load)
	  $('.slickbox').hide();
	 // shows the slickbox on clicking the noted link  
	  $('a.slick-show').click(function() {
		$(this).parent().parent().children('div').show('slow') ;
		return false;
	  });
	 // hides the slickbox on clicking the noted link  
	  $('a.slick-hide').click(function() {
		$(this).parent().parent().children('div').hide('slow')
		return false;
	  });
	 
	  $('a.slick-showAll').click(function() {
		$('.slickbox').show('slow');
		return false;
	  });
	  $('a.slick-hideAll').click(function() {
		$('.slickbox').hide('slow');
		return false;
	  });
	  
	  $('a.slick-showFooter').click(function() {
		$(this).parent().parent().children('div').show('slow')
		return false;
	  });
			  
});