
<!--
	var message1 = "Ministry to the Poor";
	var message2 = "Helping the poor and the needy in the Philippines";

	status = message1

	var timeout_id = setTimeout("swap_status()", 6000)

	function swap_status(){
	status = message2
	var timeout_id1 = setTimeout("swap_status_back()", 6000)
	}

	function swap_status_back(){
	status = message1
	var timeout_id3 = setTimeout("swap_status()", 6000)
	}
	//-->
