function appendCSSRule(selector, style)
{
	if (document.styleSheets)
	{
		if (document.styleSheets[0].insertRule) document.styleSheets[0].insertRule(selector+" { "+style+" }", document.styleSheets[0].cssRules.length);
	}
}

(function (){
	var path = document.location.pathname;
	if (path=="/")
		appendCSSRule('#header #quickContacts DIV A:first-child','display: none;');
	else
		appendCSSRule('#menu A[href="'+path+'"]:visited','font-weight: bold;');
})();