
function repdates(hnd)
{
	if(document.getElementById(hnd))
	{
		var spnary = document.getElementById(hnd).getElementsByTagName("span");
		for(x in spnary)
		{
			if(spnary[x].nodeType == 1)
			{
				spnary[x].style.position = "relative";
				spnary[x].style.top = "2px";
				var thisimg = document.createElement("img");
				thisimg.setAttribute("alt",spnary[x].firstChild.nodeValue);
				thisimg.setAttribute("src","dateimg/" + thisimg.getAttribute("alt").substring(0,4) + ".png");
				thisimg.removeAttribute("width");
				thisimg.removeAttribute("height");
				spnary[x].replaceChild(thisimg,spnary[x].firstChild);
			}
			
		}
	}
}
