function switchFAQ(id){
	var gas=id.split("r");
	
		gasfax="d"+gas[1];
		if (gasfax == "dundefined") { var gas=id.split("a"); gasfax="q"+gas[1]; }
	var status = document.getElementById(id).style.display;
	if ((status == "")||(status == "none")){
		document.getElementById(id).style.display = "block";
	document.getElementById(gasfax).style.background= "url('i/minus.jpg') 0px 2px no-repeat";
		}
	else{document.getElementById(id).style.display = "none"
		document.getElementById(gasfax).style.background= "url('i/plus.jpg') 0px 2px no-repeat";
	}
	
	
}


