
function showDetails(ThisID, ThisElement) {

	theDivs = document.getElementsByTagName('div');
	theSpans = document.getElementsByTagName('a');

	for(var y=0; y<theDivs.length; y++){
		var detailsClass = theDivs[y].className.split(" ");
		if(detailsClass[0] == "details"){
	   		theDivs[y].style.display = 'none';
		}
	}
	
	for(var x=0; x<theSpans.length; x++){
		if(theSpans[x].className == "link" || theSpans[x].className == "activeLink" ){
			theSpans[x].className = 'link';
		}
	}
	
	document.getElementById(ThisID).style.display = 'block';
	document.getElementById(ThisID+'_img').style.display = 'block';
	document.getElementById(ThisID+'_nav').style.display = 'block';
	
	ThisElement.className = 'activeLink';
	
}


function hiddeDetails(ThisID) {
	//document.getElementById(ThisID).style.display = 'none';
}

