$(document).ready(function() {

	$("th.showhidedates a").toggle(function(){
			$("td.hiddendate").css("display", 'block'); 
			$(this).text('<< hide further dates');
		},
	  function () {
	   $("td.hiddendate").css("display", 'none');
	 	 $(this).text('show further dates >>');
	});
	
	$("table.eventsSearchTable").css("display", 'none'); 
	$("h3#activateSearch a").toggle(function(){
			$("table.eventsSearchTable").slideDown('fast'); 
			$("h3#activateSearch a").addClass("on"); 	
			$(this).text("Hide search"); 		
		},
	  function () {
	   $("table.eventsSearchTable").slideUp('fast');
	   $("h3#activateSearch a").removeClass("on");
	   $(this).text("Show search"); 				 	 
	});
});						


