// COMMUNITY FUNCTIONS ----------------------------------------------------------------------------------
path_to_community = "/elements/forum_recents/";

function getForum(value){
	$('community_block').innerHTML = "Fetching Data...";
	var ajax = new Ajax.Updater(
         'community_block',        // DIV id (XXX: doesnt work?)
         path_to_community+'func.php',       // URL
         {                // options
         asynchronous: true,
		 method: 'post',
		 postBody: 'choice='+value,
		 onComplete: showResponse
		 });

	function showResponse(req){
		$('community_block').innerHTML = req.responseText;
	}
}