// JavaScript Document
		
				function text() {
				};
				
				text = new text();
				number = 0;
				
				// textArray
				text[number++] = "4 out of 5 car seats are installed incorrectly.  To check your seats call Rainbow Babies & Children's Hospital's Car Seat Fit Stop at (216) 844-2277."
				text[number++] = "If you have a question about car seats, you can call the Rainbow Babies & Children's Hospital's Car seat hotline at (216) 844-2277 to speak to a professional"
				text[number++] = "Firearm cable locks can prevent children from accidentally firing a gun.  Rainbow offers free cable  locks for gun owners.  For more information call Ken at 216-844-1235."
				text[number++] = "Rainbow offers a class that teaches children safety while babysitting.  For more information on Safe Sitter classes contact Tracey at 216-844-7352."
				// keep adding items here...
				
				increment = Math.floor(Math.random() * number);
				
				document.write(text[increment]);
