function show(object, subject) {
	document.getElementById([subject]).style.display = "block";
	object.style.background = "url(images/nav-s.gif) center left no-repeat #d91806";
	if(object.childNodes[1].innerHTML == undefined) {
		object.childNodes[0].style.color = "#fff";
	}
	else object.childNodes[1].style.color = "#fff";
}
function hideme(object, subject) {
	var thisclass;
	document.getElementById([subject]).style.display = "none";
	object.style.background = "url(images/nav-s.gif) center left no-repeat transparent";
	for( var x = 0; x < object.attributes.length; x++ ) {
	  if( object.attributes[x].nodeName.toLowerCase() == 'class' ) {
		  thisclass = object.attributes[x].nodeValue;
	  }
	}
	/* if(object.getAttribute('class') == 'active') alert("active part"); */
	if (thisclass != "active") {
		if(object.childNodes[1].innerHTML == undefined) {
			object.childNodes[0].style.color = "#6a0f0f";
		}
		else object.childNodes[1].style.color = "#6a0f0f";
	}
}
