$(document).ready(setupAfricaUK);


function setupAfricaUK(){
	
	$(".money_goes_item .money_goes_wrapper h5").addClass("item_title");
	
	$(".area1 .money_goes_item").each(function(a){
		if(a > 0){
			$(this).css("display", "none");
		}
	});
	
	$("#ukAreas ul li:first a").addClass("bold");
	

	$(".area1 .money_goes_item").each(function(j){
		africauk_title = $(this).children(".money_goes_wrapper").children(".money_goes_txt").children("h5.item_title").html();
		parsed_title = africauk_title.toLowerCase().replace(/:/g, "").replace(/&amp;/gi, "").replace(/ /g, "_").replace(/\//g, "_");
		$(this).attr("id", parsed_title);
		//$(this).parent().children("ul.africauk_nav").append("<li id='click_" + parsed_title + "'><a href='#'>" + africauk_title + "<span>&nbsp;</span></a></li>");
	});
	$("ul.africaukNav li a").click(
		function(event){
			$(this).parent().parent().parent().parent().children("div").children("ul").children("li").children("a").removeClass("bold");
			$(this).addClass("bold");
			$(this).parent().parent().parent().parent().parent().children(".money_goes_item").css("display", "none");
			chosen_section = $(this).html().toLowerCase().replace(/:/g, "").replace(/&amp;/gi, "").replace(/ /g, "_").replace(/\//g, "_");
			$("div#" + chosen_section).css("display", "block");
			event.preventDefault();

		},
		function(){
		
	
		}
	);
	
	
}