// JavaScript Document
function GetObj(id)
{
	return document.getElementById(id);	
}

function ShowHideDiv(id)
{	
	for(i = 0;i < 11 ; i++)
	{
		cur_id = 'nav'+i;
		obj = GetObj(cur_id);
		if(id == cur_id)
		{
			obj.style.display = 'block';
			//obj.style.padding-left = 74 * i;
		}
		else
		{
			obj.style.display = 'none';	
		}
	}	
}

function ShowHideLinkDiv(id)
{	
	for(i = 0;i < 3 ; i++)
	{
		cur_id = 'ft'+i;
		obj = GetObj(cur_id);
		if(id == cur_id)
		{
			obj.style.display = 'block';
			//obj.style.padding-left = 74 * i;
		}
		else
		{
			obj.style.display = 'none';	
		}
	}	
}

           