SponsoredCategories = function(cat_list)
{
	this.showIcon = function(code)
	{
		var img = document.createElement('img');
		img.src = '/Graphics/IPlayGC/1000/promo/sunnyd.jpg';
		img.style.verticalAlign = 'middle';
		
		var cells = $('tblSubNav').rows[0].cells;

		for (var c = 0; c < cells.length; c++)
		{
			if (cells[c].children[0] != undefined)
			{
				var href = cells[c].children[0].children[0].href;
				if (!!href && href.indexOf('code=' + code) != -1)
				{
					cells[c].children[0].insertBefore(img, cells[c].children[0].children[0]);
				}
			}
		}
	};
	
	for(var i = 0; i < cat_list.length; i++)
	{
		this.showIcon(cat_list[i]);
	}
};