var sections= new Array('lim-2w','lim-2-3w','lim-3-12w','lim-6w','lim-8-10w','lim-12-18w','lim-6m','lim-9m','lim-8-10y','lim-15y');
var links = new Array();

var currentLink;

function showLinks()
{
	document.getElementById('min-holder').id = "min-holder-js";
	document.getElementById('minature-nav').id = "minature-nav-js";
	for(var n=0;n<sections.length;n++) {
		document.getElementById(sections[n]).className = "lim-details-js";
	}
	currentLink = document.getElementById(sections[0] + '-nav');
	reset();
}

function reset() {
	showSection(sections[0], document.getElementById(sections[0] + "-nav"));	
}

function showSection(section, linkID) {   
	for(var n=0;n<sections.length;n++) {
		document.getElementById(sections[n]).style.display = "none";
	}
	document.getElementById(section).style.display = "block";
	/**/
	currentLink.className="";
	linkID.className = "selected";
	//alert("link - " + linkID + " -- " + linkID.className);
	currentLink = linkID;
	
}
