function info_show(refresh)
{
	document.getElementById('js_titlebox').innerHTML = js_titlearray[this.id];
}

function info_reset()
{
	document.getElementById('js_titlebox').innerHTML = "&nbsp;";
}

function add_behaviour(){
	if (jstitlebox_enabled == true)
	{
		var BlockImages = document.getElementById('thumbs_ul').getElementsByTagName("li");
		if (BlockImages.length > 0)
		{
			for (i=0; i<BlockImages.length; i++) {
				if (BlockImages[i].className=='imgblock')
				{
					BlockImages[i].onmouseover = info_show;
					BlockImages[i].onmouseout = info_reset;
					js_titlearray[BlockImages[i].id] = BlockImages[i].childNodes[0].title;
				}
			}
		}
	}
}

