var home = {};

home.last_used = null;
home.grouprollover = function(obj, id, show){
	if(show == 1){
		document.getElementById(id).style.display = "";
	}else{
		document.getElementById(id).style.display = "none";
	}
}

home.show_child = function(obj, id){
	var element = document.getElementById("child_" + id);
	//alert(id);
	if(element != null){
		//alert(element.id);
//		var child = element.parentNode.removeChild(element);
//		obj.appendChild(child);
//		child.style.marginTop = "-28px";
//		child.style.marginLeft = "112px";
//		child.style.display = "";
		element.style.display = "";
	}
	
	return false;
}

home.hide_child = function(obj, id){
	var element = document.getElementById("child_" + id);
	
	if(element != null){
		element.style.display = "none";
	}
	return false;
}
