function hideAll(){
	$('sub_about').hide();
	$('sub_eligibility').hide();
	$('sub_providers').hide();
	//$('sub_finance').hide();
	$('sub_hcap').hide();
	$('sub_coc').hide();
	$('sub_news').hide();
	$('sub_grants').hide();
}
function findPosY(obj){
    var curtop = 22;
    if(obj.offsetParent)
        while(1)
        {
          curtop += obj.offsetTop;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.y)
        curtop += obj.y;
        curtop = curtop - 154;
    return curtop;
}
function showAbout(){
	$('sub_about').show();
	var li_about = document.getElementById("li_about");
	var sub_about = document.getElementById("sub_about");
	var gettop = findPosY(li_about);
	sub_about.style.top = gettop + "px";
}
function showEligibility(){
	$('sub_eligibility').show();
	var li_eligibility = document.getElementById("li_eligibility");
	var sub_eligibility = document.getElementById("sub_eligibility");
	var gettop = findPosY(li_eligibility);
	sub_eligibility.style.top = gettop + "px";
}
function showProviders(){
	$('sub_providers').show();
	var li_providers = document.getElementById("li_providers");
	var sub_providers = document.getElementById("sub_providers");
	var gettop = findPosY(li_providers);
	sub_providers.style.top = gettop + "px";
}
function showFinance(){
	$('sub_finance').show();
	var li_finance = document.getElementById("li_finance");
	var sub_finance = document.getElementById("sub_finance");
	var gettop = findPosY(li_finance);
	sub_finance.style.top = gettop + "px";
}
function showHCAP(){
	$('sub_hcap').show();
	var li_hcap = document.getElementById("li_hcap");
	var sub_hcap = document.getElementById("sub_hcap");
	var gettop = findPosY(li_hcap);
	sub_hcap.style.top = gettop + "px";
}
function showCOC(){
	$('sub_coc').show();
	var li_coc = document.getElementById("li_coc");
	var sub_coc = document.getElementById("sub_coc");
	var gettop = findPosY(li_coc);
	sub_coc.style.top = gettop + "px";
}
function showNews(){
	$('sub_news').show();
	var li_news = document.getElementById("li_news");
	var sub_news = document.getElementById("sub_news");
	var gettop = findPosY(li_news);
	sub_news.style.top = gettop + "px";
}
function showGrants(){
	$('sub_grants').show();
	var li_grants = document.getElementById("li_grants");
	var sub_grants = document.getElementById("sub_grants");
	var gettop = findPosY(li_grants);
	sub_grants.style.top = gettop + "px";
}

function hideAbout(){
	$('sub_about').hide();
}
function hideEligibility(){
	$('sub_eligibility').hide();
}
function hideProviders(){
	$('sub_providers').hide();
}
function hideFinance(){
	$('sub_finance').hide();
}
function hideHCAP(){
	$('sub_hcap').hide();
}
function hideCOC(){
	$('sub_coc').hide();
}
function hideNews(){
	$('sub_news').hide();
}
function hideGrants(){
	$('sub_grants').hide();
}