   $(document).ready(function(){
   	$(".eventDetails:visible").hide();
   	
   	$("a[@rel='expandInfo']").click(function(event){
   		$("div" + this.hash).toggle();
   		return false;
   	});
	});
