// JavaScript code for Tisch library LibGuides instantiation


var h2Styler = 
{
	init: function()
	{
		var h2Content = document.getElementsByTagName('h2');
	
		var i = 0;
		while (i < h2Content.length)
		{
			var header_text = h2Content[i].childNodes[0].nodeValue;
			if (header_text == "Contents") 
				{
				h2Content[i].parentNode.parentNode.style.backgroundColor = "#63a3ec";
				h2Content[i].parentNode.style.backgroundColor = "#63a3ec";
				h2Content[i].style.color = "#ffffff";
				}
			i++;
		}
	
	}
};


Core.start(h2Styler);




