// JavaScript Document

	function getMarquee(nodeValue)  //don't pass the whole array, just the value of the current index
	{
		//Athor: Chris King - Ricky Road LLC 09/02/2007
		//purpose:  Returns the user friendly text from a one word value
		//Scope:  Populate marquee values within the main body HTML.  Can be used to populate values of other objects in the document
		//This script is not protected by any license or itellectual property agreement and can be used for any appliance
		
		var sReturn = "";
		switch (nodeValue.toUpperCase())  //set the string to upper case to make the search case insensitive
		{		
			case"BALCONY":
				sReturn = "The balcony view exposes the Feng Shui look and harmony of shapes and colors throughout to show how a pharmacy might present itself less traditionally to patients.  Behind the viewer is the large conference center outfitted for technology and healthcare presentations.  Next to that is the kitchen and separate break room for employees.  On this second floor is HME billing, bookkeeping and marketing.  An optometrist, healthcare office, medical insurance agent and psychologist and physician offices complete the upstairs."; //set the marquee value here
				break;	
			case "CHECKINGSTATION":
				sReturn = "The pharmacist has a laptop, internet access, pnone/headset available to facilitate workflow allowing one pharmacists to check from 300-600 Rx’s on any day.  The secretary/tech problem solver is to his left with a business office and separate window for patients that have 3rd party issues and don’t need to see a pharmacist.  The sacking station is to his right and behind him are 2 counseling stations (with counseling info and supplies) and narcotic cabinet and fridge, all within 3 feet.  This separate checking station with limited tech interaction allows 100% focus which maintains tremendous accuracy in spite of high volume due to the quiet and harmonious environment."; //set the marquee value here
				break;
			case"DEVELOPMENTMAP":
				sReturn = ""; //set the marquee value here
				break;
			case"ENTRYWAY":
				sReturn = "Patients are invited to spend an hour but hopefully choose to spend a lifetime at this pharmacy.  The first impression is reinforced by the sweeping ceilings with indoor sunshine cascading from the ceiling sky lights, oversized handcrafted wood light fixtures, transparent ceilings exposing the natural wood beams, beautiful stained concrete floors, mammoth painted murals, sculptured water fountain with plants, and DVD plasma screens introducing the products and services offered to the patients as they enter."; //set the marquee value here
				break;
			case"FILLTECH":
				sReturn = "Four fill techs retrieve new and refill Rx’s from the receiving techs and assimilate on a work area with fast movers all within reach while some wear headsets to handle incoming calls.  There is no clutter and adequate lighting ensuring accuracy and speed while still allowing small talk.  A separate check-in table is between them and the drive-up window which has 2 lanes to avoid patients waiting.  Rx’s are hung up by the Monaco Rx system."; //set the marquee value here
				break;
			case"FLOOR1":
				sReturn = ""; //set the marquee value here
				break;
			case"FLOOR2":
				sReturn = ""; //set the marquee value here
				break;
			case"HME":
				sReturn = "HME items are strategically placed and arranged in a home environment setting for impulse sales next to the larger, more comfortable 2nd waiting area with one of the other 3 DVD Plasma screens educating waiting patients as HME customer service reps work from their adjoining twin desks next to the mastectomy and nebulizers/oxygen fitting rooms."; //set the marquee value here
				break;
			case"MTM":
				sReturn = "Medication Therapy Management is a cornerstone of the future of this pharmacy.  The Pharm D’s office is strategically placed next to the patient viewing areas where patients observe compounding and IV preparation by one of the 8 certified techs.  The  glassed in MTM office leaves an openness encouraging questions with adequate room to counsel 2 patients, at the same time while still affording a semblance of privacy."; //set the marquee value here
				break;
			case"OTC":
				sReturn = "After passing the greeting station/check-out made from the one-of-a kind crafted fixtures and stained concrete counter tops you pass the beautiful gift selections, cards, business center with intermixed HME products and no OTC’s are merchandised below the knees and one of the two patient waiting areas on your way to the receiving technicians.  The restrooms are immaculate and artfully tiled and decorated since women are your harshest critics, starting at the restroom."; //set the marquee value here
				break;
			case"RECEIGVINGTECH":
				sReturn = "The receiving techs with headsets work in a harmonious environment that keeps the patients at peace as they take and enter the Rx’s to proactively avoid problems such as early or no refills, defective insurance, illegible writing and out-of-stock items.  These techs also call up the Rx’s on the screens and ask if other Rx’s need to be filled to increase compliance and reduce double and triple ordering by phone or IVR.  A waiting distance is established for 2 lines to avoid HIPPA problems while above are Sepia painted murals of employees.  The pharmacy was designed to limit patients’ views with walls and one-way glass, except from the receiving and consulting areas."; //set the marquee value here
				break;
			case"WELCOMETOTRUMANVILLAGE":
				sReturn = "Welcome to the virtual tour of J&D Pharmacy in the 28,000 sq ft Truman Medical Village.  Some visitors say, ‘J&D has done to pharmacy what Bass Pro has done to sporting goods.’   You be the judge of this non-traditional pharmacy.  A symphony of beauty, technology and tranquility is what you experience when you visit this rural pharmacy in Warsaw, MO."; //set the marquee value here
				break;
		}
		return sReturn;
	}
	