$(document).ready(function() { 
	$("#feeds").hide();
  	$("#feedstoggle").click(function() {
  		$("#feeds").slideToggle();
  	});
	$("#myEvents2[title]").tooltip({ position: "center left", opacity: .7, effect: "slide"});
	
	$('#communityBulletin').html('<img src="../images/ajax-loader.gif" alt="loading" />');
	$.post('../bulletin.php', function(result){
		$('#communityBulletin').html(result);
	});
	
	$('#activeForumThreads').html('<img src="../images/ajax-loader.gif" alt="loading" />');
	$.post('../activethreads.php', function(result){
		$('#activeForumThreads').html(result);
	});
	
}); 
