function onLoadFunction()
{
	// Prende tutti i div
	var divs = document.getElementsByTagName("div");
	
	for(var i = 0; i < divs.length; i++)
	{
		var currentDiv = divs[i];
		var currentTitle = currentDiv.getAttribute("title");
		
		// Nascondi copyright AceSEF
		if (currentTitle != null)
		{
			if (currentTitle.indexOf("Joomla SEO by AceSEF") != -1)
				currentDiv.style.display = "none";
		}
	}
}

