// JavaScript Document
function Infofooter()
{
	var obj = document.getElementById('aboutparafooter');

	if (obj.style.display == 'block')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = 'block';
	}
}