jQuery(document).ready(function($) {

	$('#info_tab a').click(function() {

		if( $('#info').height() > 0 ) {
			newHeight = 0;
		} else {
			newHeight = 200;
		}
		
		$('#info').animate({
		    height: newHeight+'px',
		    duration: 'slow'
		    
		  }, 300, function() {
		    // Animation complete.
		  });
		  
		

	});

	$('.event img').tooltip({showURL: false });
	
});

