function chooseprotocol()
{
	if (window.location.protocol == "http:")
	{
		for (var i = 0; i < document.links.length; i++)
		{
			var link = document.links[i];
			if ((link.protocol == "https:") && (link.host == "adblockplus.org") && ((/^https:\/\/adblockplus.org\/forum\//.test(link.href)) == false))
					{link.protocol = "http:";}
		}
	}
}

window.addEventListener("load",chooseprotocol,false)
