function GetLink(target)
{
	var obj;
	if(obj = $(target).select(".link>a"))
		location.href = obj;
}


function ShowContent(target, content_name)
{
	$(content_name).show();
	$(target).hide();

	var obj;
	for(var i=0; i<target.parentNode.childNodes.length; i++)
	{
		obj = target.parentNode.childNodes[i];
		if(obj.tagName == "A" && obj.className != target.className)
		{
			$(obj).show();
			break;
		}
	}
}


function HideContent(target, content_name)
{
	$(content_name).hide();
	$(target).hide();

	var obj;
	for(var i=0; i<target.parentNode.childNodes.length; i++)
	{
		obj = target.parentNode.childNodes[i];
		if(obj.tagName == "A" && obj.className != target.className)
		{
			$(obj).show();
			break;
		}
	}
}
