function setCalloutWidth()
{
	var li = document.getElementById('callout').getElementsByTagName('li');
	for(var i=0;li.length>i;i++)
	{
		var item = li.item(i);
		if(item.getElementsByTagName('img').length>0)
		{
			imgWidth = item.getElementsByTagName('img').item(0).offsetWidth;
			liWidth = item.offsetWidth;

			if(imgWidth<=(liWidth/2))
			{
				divWidth = liWidth-imgWidth-24;
				item.getElementsByTagName('div').item(0).style.width=divWidth+'px';
			}
		}
	}
}

onloadVars[onloadIndex]='setCalloutWidth()';
onloadIndex++;
