			//PET = Pet Obedience Course Descriptions
			//RAL = Rally Course Descriptions
			//OBD = Obedience Course Descriptions
	var TipVar = 0;  //Sets up the variable that counts the Tips

	function FixTip(TipIDVal, TipTxtVal) { // Allows you to use variables for the array instead of numbers.
	   this.TipIDVal = TipIDVal 
	   this.TipTxtVal = TipTxtVal 
	} 

	var TipArray = new Array() // Sets up the tip array.
	// Now add one line for each tip you want on the page.  The format of these lines is shown below:
	// TipArray[TipVar++] = new FixTip("Tip Identifier", "Tip Description")
	//If you need to change the Tip, please make sure you only change the Text between the quotation marks.  
	//    DO NOT USE QUOTATION MARKS WITHIN THE TIP!  You Will break the ToolTip Functionality.
	//The quotation marks must stay at the beginning and end of each Tip!
//BEGINNING OF ToolTip ARRAY                 Below is the only section that will normally require any changes.
	TipArray[TipVar++] = new FixTip("PET1", "The Puppy Kindergarten class is very important for all puppies to work on socialization skills around other dogs and people. The puppies get to play with other puppies and to interact with strangers. House manners and common behavior issues (e.g., housetraining, jumping on people, etc. ) are covered. This class gets you and your dog off to a wonderful start of building a great relationship and training foundation with your dog.")
	TipArray[TipVar++] = new FixTip("BBD1", "OFA &ndash; an x-ray to ensure the hips of the dog are not dysplastic. OFA results on hips are graded as Fair, Good or Excellent. A certificate will be issued for these three grades as a pass if tested after 2 yrs of age.")
	TipArray[TipVar++] = new FixTip("BBD2", "CERF &ndash; test done by a canine opthamologist to insure the dog has no eye abnormalities that can be genetically passed onto puppies or cause the dog to go blind. Also, if the dog does have eye abnormalities, the dog can be treated before the problem becomes severe.")
	TipArray[TipVar++] = new FixTip("BBD3", "vWD DNA test: is a one time only test. Detects whether or not the male or female carry one or two factors of the mutated bleeding gene. vWD is similar to hemophilia in humans and may be fatal. Ideally results should be Clear or Carrier")
	TipArray[TipVar++] = new FixTip("BBD4", "Thyroid affects every Organ in the body.  Done to insure no Thyroid problems with Pups.  Test Should be done yearly after 2 yrs of age. ")
	TipArray[TipVar++] = new FixTip("ABD1", "Echocardiogram: this test is an ultrasound of the heart muscle to look at the heart to determine if it is starting to enlarge, has any problems with any of the valves of the heart or if there are any abnormalities in the heart muscle. This test should be done yearly. This Test does not guarantee the dog is Cardio free – it simply means that at the time the test was done, the dog did not show symptoms.")
	TipArray[TipVar++] = new FixTip("ABD2", "24 Hour Holter Monitor: Shows whether the dog is experiencing any PVC’s (premature ventricular contractions) in order to catch early heart problems so that the dog can be treated if it has a problem with the heart. Heart Disease is a major problem and all steps taken to prevent this can only benefit the breed. ")
	TipArray[TipVar++] = new FixTip("ABD3", "Nose and Coat Color Test.  Determines the colors carried by the dog, and consequently the colors passed on.  Dilution is Not specifically a deciding factor, however, it may alter the choice of male and/or female parents, since Blue and Fawn colored dogs do have particular health problems not seen in Black or Red dogs.")
	TipArray[TipVar++] = new FixTip("ABD4", "The WAE (Working Aptitude Evaluation) is used to determine stability and suitability for performing the duties originally intended for the breed.  In Europe, passing this test is considered a mandatory Breeding Requirement, even though it is not a true Health Test.")
	TipArray[TipVar++] = new FixTip("ABD5", "Also Known as a Blood Chemistry Panel. Used to determine if the liver among other organs are functioning at there optimal levels. Results are compared to clinical normal ranges to determine whether there is a problem. This test should be done yearly and compared to previous results as well.")
	TipArray[TipVar++] = new FixTip("PEM1", "Progesterone Test will provide information on the Ovulation of the female.  Testing should start during the heat cycle under Direction of a Veterinarian.")
			//MIS = Miscelleneous Expenses
	TipArray[TipVar++] = new FixTip("MIS1", "While not a requirement, toys that stimulate the minds of the pups is generally considered a must to insure the pups have a wide range of experience during the formative period.")
	TipArray[TipVar++] = new FixTip("MIS2", "Generally speaking, the Puppy Buyers Kit will include many things to help the new owner get started raising their new puppy.")
	TipArray[TipVar++] = new FixTip("MIS3", "Heating lamps are used to insure the pups do not get cold during the first few weeks of their life.")
	TipArray[TipVar++] = new FixTip("MIS4", "This is a factor for many breeders that work outside the home.")
			//OPE = Other possible Expenses
	TipArray[TipVar++] = new FixTip("OPE1", "Generally C-Sections are NOT Planned.  A C-Section is therefore considered an emergency procedure but should be accounted for as a breeding expense.")
	TipArray[TipVar++] = new FixTip("OPE2", "This is a relatively new service available to breeders that want to insure they have a qualified DVM to speak with during the pregnancy and whelping of a litter.")
//END OF THE ToolTip ARRAY

