   // When the page is ready
   $(document).ready(function(){
	
	$("[action='link']")	.css({'cursor' : 'pointer'});

	$("[action='link'][target!='_blank']").click(function(event){
		window.location = $(this).attr("href");
     });
	
	$("[action='link'][target='_blank']").click(function(event){
		
		window.open ($(this).attr("href"));
     });
	
	// Next events Toggle
     $(".event .detail").hide();
     $("div.item").click(function(event){
       $(this).next(".detail").slideToggle("slow");
       
       // Stop the link click from doing its normal thing
       event.preventDefault();
     });
	 
	// Praesidium Toggle
	 $(".praesidium .info").hide();
     $("div.header").click(function(event){
       $(this).parent().children(".info").slideToggle("slow");
       
       // Stop the link click from doing its normal thing
       event.preventDefault();
     });

});