function replace(teh_text)
{
	a = document.getElementById("mebu");
	while (a.firstChild)
	{
		a.removeChild(a.firstChild)
	}
	
	a.appendChild(teh_text);
}

var faq = null;
var about = null;
var temp = null;

faq = document.createElement('div');
temp = document.createElement('p');
temp.appendChild(document.createTextNode('Where is Irad Located?'));
faq.appendChild(temp);
temp = document.createElement('p');
temp.appendChild(document.createTextNode('Irad is located in Pittsburgh PA'));
faq.appendChild(temp);
temp = document.createElement('p');
temp.appendChild(document.createTextNode('IRAD also has radiologists throughout the United States.'));
faq.appendChild(temp);
temp = document.createElement('p');
temp.appendChild(document.createTextNode('How long has Irad been in business?'));
faq.appendChild(temp);
temp = document.createElement('p');
temp.appendChild(document.createTextNode('IRAD began servicing clients in early 2001.'));
faq.appendChild(temp);
temp = document.createElement('p');
temp.appendChild(document.createTextNode('Does Irad outsource examinations overseas?'));
faq.appendChild(temp);
temp = document.createElement('p');
temp.appendChild(document.createTextNode('No, All Irad physcians are located in the Continental U.S.'));
faq.appendChild(temp);

about = document.createElement('div');
temp = document.createElement('p');
temp.appendChild(document.createTextNode('Recognizing the crisis of the radiologist shortage, IRAD Services. Inc. was formed more than three years ago by three health care businessmen and four radiologists in Pittsburgh Pennsylvania. As a private and independent company, IRAD has since grown into a national operation that provides interpretive services around-the-clock with over twenty Board Certified radiologists. IRAD uses a sophisticated web-based imaging solution, combined with service oriented operations that enable timely interpreations for hospitals, radiology groups, free standing medical centers and mobile diagnostic companies throughout the United States.'));
about.appendChild(temp);
temp = document.createElement('p');
temp.appendChild(document.createTextNode('Irad is located in Pittsburgh PA'));
about.appendChild(temp);

