function randomFaq() {
	var imgTarget = document.getElementById('randomfaq');
	var imgCode = "";
	var imgNum = Math.floor(Math.random()*6);
	
	switch(imgNum) {
		case 0:
			imgCode = '<h1>When should I fight for custody?</h1><p>When there is a significant difference in the quality of the parents, and the better parent has a more than 50% chance for success, a custody battle is likely the smartest option. When you are the better parent, simply going along to get along&#151;and giving up custody to buy peace&#151;usually doesn&#39t work to anybody&#39s satisfaction.</p>';
			break;
		case 1:
			imgCode = '<h1>How do I choose a good lawyer?</h1><p>Talk to friends and family who have experienced similar problems. Look for someone who regularly practices in the county where your case will be.  Meet with several attorneys. Tell each what is going on&#151;then ask questions. Trust your instinct. If it doesn&#39t feel right, don&#39t hire him.</p>';
			break;
		case 2:
			imgCode = '<h1>What is PIP?</h1><p>A standard automobile policy is really several different policies. PIP stands for Personal Injury Protection. It is an agreement with your insurance company that, if you are in a car wreck and are injured, they will pay up to (usually) $2,500 or $5,000 of either your medical expenses or 80% of your lost wages.</p>';
			break;
		case 3:
			imgCode = '<h1>What is probate?</h1><p>Probate is the legal process of using the court to get property out of a deceased person&#39;s name and into the name of the rightful heirs.  Probate is generally a simple, relatively inexpensive process. A probate lawyer will do 80% - 90% of the work. There is nothing to be intimidated about.</p>';
			break;
		case 4:
			imgCode = '<h1>Can I prepare a handwritten Will?</h1><p>Yes. Also known as a holographic Will, a handwritten Will is valid in Texas. If drawn properly, it does not require many of the formalities found in a normal Will in order to be honored by the probate court.  Writer&#39;s cramp is a hazard, too: The Will must be completely in your handwriting. You can&#39;t simply type it up and sign it. </p>';
			break;
		case 5:
			imgCode = '<h1>Can I file for divorce without a lawyer?</h1><p>Some people do, and are successful. Should you try it, make sure you&#39;re looking at a very, very simple divorce. If there is no real estate to divide, no children from the marriage, very little personal property, and it&#39;s been a short-term marriage, then you very well may be able to handle the matter yourself.</p>';
			break;
		default:
			imgCode = '<h1>When should I fight for custody?</h1><p>When there is a significant difference in the quality of the parents, and the better parent has a more than 50% chance for success, a custody battle is likely the smartest option. When you are the better parent, simply going along to get along&#151;and giving up custody to buy peace&#151;usually doesn&#39t work to anybody&#39s satisfaction.</p>';
			break;
	} //end switch(imgNum)
	
	imgTarget.innerHTML = imgCode;
} //end function randomFaq()