var last_tab = "";

function tab_selected(tab_id)
{
	if(last_tab != tab_id)
	{
		hide_tab(last_tab);

		last_tab = tab_id;
		show_tab(last_tab);
	}
}

function hide_tab(tab_id)
{
	var tab = get_element(tab_id);
	tab.className = "";

	var box = get_element("box_" + tab_id);
	box.className = "tab-body";
}

function show_tab(tab_id)
{
	var tab = get_element(tab_id);
	tab.className = "selected";

	var box = get_element("box_" + tab_id);
	box.className = "tab-body-selected";
}

