function Init()
{
	var divs = document.getElementsByTagName('div');
	for (j=0;j<divs.length;j++)
	{
		if (divs[j].className == 'comment-excerpt')
		{
			var excerptLength = divs[j].getElementsByTagName('span')[1].innerHTML.length;
			if (excerptLength <= 1)
			{
				divs[j].style.display = 'none';
			}
			else
			{
				divs[j].style.display = 'inline';
			}
		}
	}
	var links = document.getElementsByTagName('a');
	var  dochref = String(document.location);
	for  (j=0;j<links.length;j++)
	{
		if (links[j].className == 'comment-author' && (links[j].href == dochref  ||
		    links[j].href == dochref.substring(0,dochref.lastIndexOf('/')  + 1)))
		{
			links[j].href = 'javascript:alert("Poster did not leave an e-mail or web address.");';
		}
	}
	var clustrMap = document.getElementById('clustrMapsImage');
	clustrMap.onerror="this.onError=null; this.src='http://www.meetomatic.com/images/clustrmaps-back-soon.jpg'; document.getElementById('clustrMapsLink').href='http://clustrmaps.com/'";
	if (window.Jacuba) Jacuba.applyTo('element: TEXTAREA');
}
