<?xml version="1.0"?>
<products_by_vendor
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:noNamespaceSchemaLocation="c:\Nancy XML stuff\gg_products.xsd">

  <vendor id="conners">
    <vendor_name>Conners Chair Company</vendor_name>
    <fax>770-237-5712</fax>
    <phone>770-995-1993</phone>
    <email>rbw@polyglotinc.com</email>
    <website>http://www.polyglotinc.com/</website>
    <address state="GA" city="Lawrenceville" zip="30043" street="331 Ashbourne Trail"/>

    <product>
		<gg_sku>GG001</gg_sku>
        <vendor_sku>QA3452</vendor_sku>
        <short_desc>Queen Anne Chair</short_desc>
        <price type="cost">$85.00</price>
        <price type="sale">125.00</price>
        <price type="retail">$195.00</price>
		<version>
          <short_desc>royal blue</short_desc>
		  <inventory location="warehouse">12</inventory>
          <inventory location="showroom">5</inventory>
		</version>
		<version>
          <short_desc>flower print</short_desc>
		  <inventory location="warehouse">16</inventory>
          <inventory location="showroom">3</inventory>
		</version>
		<version>
          <short_desc>seafoam green</short_desc>
		  <inventory location="warehouse">20</inventory>
		</version>
		<version>
          <short_desc>teal</short_desc>
		  <inventory>20</inventory>  <!-- NOTE THE USE OF THE DEFAULT LOCATION -->
		</version>
		<version>
          <short_desc>burgandy</short_desc>
		  <inventory>34</inventory>
		</version>
    </product>

    <product>
		<gg_sku>GG002</gg_sku>
        <vendor_sku>RC2342</vendor_sku>
        <short_desc>Early American Rocking Chair</short_desc>
        <long_desc>
            with brown and tan plaid upholstery
        </long_desc>
        <price type="cost">75.00</price>
        <price type="sale">62.00</price>
        <price>120.00</price>  <!-- NOTE THE USE OF THE DEFAULT PRICE TYPE -->
        <inventory location="warehouse">40</inventory>
        <inventory location="showroom">2</inventory>
    </product>

    <product>
		<gg_sku>GG003</gg_sku>
        <vendor_sku>BR3452</vendor_sku>
        <short_desc>Bentwood Rocker</short_desc>
        <price type="cost">125.00</price>
        <price type="sale">159.99</price>
        <price type="retail">210.00</price>
        <inventory location="showroom">3</inventory>
    </product>

  </vendor>

  <vendor id="wally">
     <vendor_name>
         Wally&apos;s Wonderful World of Furniture
     </vendor_name>

     <suite>
         <vendor_sku>CDRS</vendor_sku>
         <short_desc>Complete Dining Room Set</short_desc>
         <long_desc>
             This five piece dining site set features swivel
             chairs with cushions in five exciting colors.
         </long_desc>
         <price type="cost">435</price>
         <price type="sale">699</price>
         <price type="retail">999</price>

         <product>
		   <gg_sku>GG004</gg_sku>
           <vendor_sku>WWWdrt</vendor_sku>
           <short_desc>Dining Room Table</short_desc>
           <price type="cost">105</price>
           <price type="sale">145</price>
           <price type="retail">195</price>
           <inventory location="warehouse">132</inventory>
         </product>
         <product>
		   <gg_sku>GG004</gg_sku>
           <vendor_sku>WWWsc</vendor_sku>
           <short_desc>Swivel Chair</short_desc>
           <price type="cost">50</price>
           <price type="sale">45</price>
           <price type="retail">99</price>
           <inventory location="warehouse">300</inventory>
         </product>
         <product>
		   <gg_sku>GG001</gg_sku>
           <vendor_sku>WWWhch</vendor_sku>
           <short_desc>Hutch</short_desc>
           <price type="cost">346</price>
           <price type="sale">425</price>
           <price type="retail">600</price>
           <inventory location="warehouse">232</inventory>
        </product>
    </suite>

    <product>
	   <gg_sku>GG001</gg_sku>
       <vendor_sku>HallBench</vendor_sku>
       <short_desc>Hall Bench</short_desc>
       <price type="cost">75</price>
       <price type="sale">62</price>
       <price type="retail">120</price>
       <inventory location="warehouse">143</inventory>
       <inventory location="showroom">5</inventory>
    </product>

  </vendor>

  <vendor id="marge">
    <vendor_name>Crazy Marge&apos;s Bed Emporium</vendor_name>

    <product>
		<gg_sku>GG001</gg_sku>
        <vendor_sku>5622345</vendor_sku>
        <short_desc>CozyComfort Mattresses</short_desc>
        <version>
            <short_desc>Queen</short_desc>
            <price type="cost">59.00</price>
            <price type="sale">69.00</price>
            <price type="retail">99.00</price>
        </version>
        <version>
            <short_desc>King</short_desc>
            <price type="cost">159.00</price>
            <price type="sale">209.00</price>
            <price type="retail">359.00</price>
        </version>
    </product>

  </vendor>

</products_by_vendor>

