$(document).ready(function() {
	$.ajax( {
		url : 'common/getTotalFocusFund.eri',
		type : 'POST',
		dataType : 'html',
		error : function() {
			alert('Error loading action document');
		},
		success : function(result) {
			$("#focusFund").prepend(result);
		}
	});
});
