var sections= new Array('ears','teethAndGums','coat','skin','urinaryHealth','tail','eyes');
var links = new Array();
var currentLink;

function showLinks()
{
	document.getElementById('poh-intro').id = "poh-intro-js";
	document.getElementById('hotspots').id = "hotspots-js";
	document.getElementById('intro').className = "info-details-default";
	
	for(var n=0;n<sections.length;n++) {
		document.getElementById(sections[n]).className = "info-details-js";
	}
	reset();
}

function reset() {
	showSection('intro', null);
}

function showSection(section, linkID) {   
	for(var n=0;n<sections.length;n++) {
		document.getElementById(sections[n]).style.display = "none";
		document.getElementById('intro').style.display = "none";
	}
	
	document.getElementById(section).style.display = "block";
	/*
	if (currentLink != null) {
		currentLink.className = "";	
	}
	if (linkID != null) {
		linkID.className = "active";
		currentLink = linkID;
	}
	*/
}
