
This file contains help on seting up new categories.
------------------------------------------------------------------------------------------

#### This is the main categories listings setup #####
 
%supercat = ( 

    antiques => 'Antiques',     # Main Category Listing

    antiquesart => 'Art',      # Main Category Listing   

);

## This is the sub categories listings setup ############

%category = (

   homes=> 'Homes',    # with No Sub Category

   antiques01 => '<!--antiques-->Antiques',     # with a Sub Category

   antiques001 => '<!--antiques--><!--antiquesart-->ART',     # Sub Category with a sub category 
  
);

 
=================================================================

 The main categories are setup under this section:
%supercat = (      

 and they are formated just like this:

       antiques => 'Antiques',


The sub categories are setup in this section:

%category = (
       
and they are formated just like this, and this part is the actual dir is created to store the infi in. antiques1
         
       antiques1 => '<!--antiques-->General Antiques',


This part of the above line <!--antiques--> is the referrer to the main category listing it's to be assocated with.


================================
the main listing

       Reffer for sub dir:        main category Name
       antiques =>               'Antiques',

=====================================
the sub listing

       Cat dir:       Main Cat referrer:     Sub Cateory Name
       antiques1 =>    '<!--antiques-->      General Antiques',

