// JavaScript Document
var showing = 0;
var who = 0;




function showanswer(faq_id){
	var faqelm = 'description'+faq_id;
	var oldelm = 'description'+who;
	var linkid = 'title'+faq_id;
	var oldlinkid = 'title'+who;
	
	if(showing == 1){
//		document.getElementById(oldlinkid).style.color = "#243433";
//		document.getElementById(oldlinkid).style.backgroundColor = "#ffffff";
		document.getElementById(oldelm).style.display = "none";
		showing = 0;
	}

	document.getElementById(faqelm).style.display = "block";
	
	document.getElementById(faqelm).style.borderTopColor = "#243433";
	document.getElementById(faqelm).style.borderTopStyle = "solid";
	document.getElementById(faqelm).style.borderTopWidth = "1px";

	document.getElementById(faqelm).style.borderBottomColor = "#243433";
	document.getElementById(faqelm).style.borderBottomStyle = "solid";
	document.getElementById(faqelm).style.borderBottomWidth = "1px";

	document.getElementById(faqelm).style.borderLeftColor = "#243433";
	document.getElementById(faqelm).style.borderLeftStyle = "solid";
	document.getElementById(faqelm).style.borderLeftWidth = "1px";

	document.getElementById(faqelm).style.borderRightColor = "#243433";
	document.getElementById(faqelm).style.borderRightStyle = "solid";
	document.getElementById(faqelm).style.borderRightWidth = "1px";
	
//	document.getElementById(linkid).style.backgroundColor = "#cccccc";

	document.getElementById(faqelm).style.backgroundColor = "#cccccc";	
	document.getElementById(faqelm).style.padding = "10px";
	
	showing = 1;
	who = faq_id;
}
