﻿// JavaScript Document
function setABHeight(eABa,eABb) {
    var colHeightNeed = this.document.getElementById(eABa);
    if (!colHeightNeed){}
    else
    {
        var colABaH = this.document.getElementById(eABa).scrollHeight;
        var colABbH = this.document.getElementById(eABb).scrollHeight;
		
        if (colABaH > colABbH)
        {
            this.document.getElementById(eABb).style.height=this.document.getElementById(eABa).scrollHeight+"px";
        }
        else if (colABbH > colABaH)
        {
            this.document.getElementById(eABa).style.height=this.document.getElementById(eABb).scrollHeight+"px"
        }
    }
};

window.onload = function(){
    setABHeight("content-zone","context-zone");
};


function show(no,type, obj){
	$('#sec-nav-'+no).css('display',type);	
	if(type=='block'){
		$('#'+no+' a:first').addClass('sel-now');
	}else{
		$('#'+no+' a:first').removeClass('sel-now');
	}
}
