var catlistexist = document.getElementById('CatalogueList');
if(catlistexist)
{
	var catlist = catlistexist.getElementsByTagName('a');
	for (var num = 0; num < catlist.length; num++)
	{
		var hr = catlist[num].getAttribute('href');
		if(window.CurrentCatalogue != undefined)
		{
			if(CurrentCatalogue != 'GLOBAL')
			{
				if(hr.match(CurrentCatalogue))
				{
					catlist[num].style.background = "#BED73B";
					catlist[num].style.fontWeight = "bold";
					break;
				}
			}
			else
			{
				if(hr.match("'ZZCAT:'"))
				{
					catlist[num].style.background = "#BED73B";
					catlist[num].style.fontWeight = "bold";
					break;
				}	
			}
		}
	}
}



