// JavaScript Document
 function GetTab(tab){
       if (tab == "")
        {
           hideContent();
           showContent(1);
           hideMenu();
           showMenu(1);
        } 
        else
        {
           hideContent();
           showContent(tab);
           hideMenu();
           showMenu(tab);
        }
}

function showContent(id) {
	if(document.getElementById("overview_in_" + id).style.display ) {
		document.getElementById("overview_in_" + id).style.display = 'block';
	}
	
}	
function hideContent() {
	
	for(j=1;j<=5;j++) {
			document.getElementById("overview_in_" + j).style.display = 'none';
	}
}
function hideMenu() {
	
	for(k=1;k<=5;k++) {
			document.getElementById("link_" + k).style.display = 'none';
	}
}
function showMenu(id) {
	if(document.getElementById("link_" + id).style.display ) {
		document.getElementById("link_" + id).style.display = 'block';
	}
	
}
	
