// JavaScript Document

theObjects = document.getElementsByTagName("div");

for(var i = 0; i < theObjects.length; i++)
{
	if(theObjects[i].className == "IEFIX")
	{
		theObjects[i].outerHTML = theObjects[i].outerHTML;
	}
}

