/*
	sub navigation codes
*/


function show_subnav(id)
{
	document.getElementById(id).style.display='block';
}

function hide_subnav(id)
{
	document.getElementById(id).style.display='none';
}


function show_subnav_V2(id)
{
	document.getElementById(id).style.visibility='visible';
}

function hide_subnav_V2(id)
{
	document.getElementById(id).style.visibility='hidden';
}
