// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "Exterior_Motor_and_Toter_Homes", "Interior_Toters_or_Motor_Homes", "Toters", "Motor_Homes", "Repairs","misc_pics")

MainVar = 0; // Sets up the variable that counts the pictures.

function Fix(DatVal, PicVal, TitVal, CatVal, TxtVal) { // Allows you to use variables for the array instead of numbers.
   this.DatVal = DatVal 
   this.PicVal = PicVal 
   this.TitVal = TitVal 
   this.CatVal = CatVal
   this.TxtVal = TxtVal 
} 
var MainArray = new Array() // Sets up the main array.

// Now add one line for each picture you want in the album.  The format of these lines is shown below:
// MainArray[MainVar++] = new Fix("date", "picname.jpg", "pic title", "category", "pic description")

MainArray[MainVar++] = new Fix("", "images/bedtime.jpg", "Large oak vanity and mirror", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/walnut_bedroom.jpg", "Bedroom with walnut cabinets and bed in a slide-out", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/plush2.jpg", "Plush and Comfortable", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/oak1.jpg", "Comfortable Dining", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/cookout.jpg", "The Ultimate Tailgate Party", "Exterior_Motor_and_Toter_Homes", "")
MainArray[MainVar++] = new Fix("", "images/nice_grass.jpg", "24-foot motor home with matching trailer", "Exterior_Motor_and_Toter_Homes", "")
MainArray[MainVar++] = new Fix("", "images/img1.jpg", "36-foot motor home with remote controlled awnings", "Exterior_Motor_and_Toter_Homes", "")
MainArray[MainVar++] = new Fix("", "images/back_n_white1.jpg", "Off to the races!", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/back_n_white2.jpg", "Off to the races Part II", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/oak_n_tile.jpg", "Full hard wood valences and mirrored walls", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/slide_out_kitchen.jpg", "Walnut kitchen in a slide-out", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/motor_out1.jpg", "36-foot motor home – roadside", "Exterior_Motor_and_Toter_Homes", "")
MainArray[MainVar++] = new Fix("", "images/motor_out2.jpg", "36-foot motor home – curbside", "Exterior_Motor_and_Toter_Homes", "")
MainArray[MainVar++] = new Fix("", "images/double_slide1.jpg", "Twin slide-outs with maple cabinets", "Interior_Toters_or_Motor_Homes", "")
MainArray[MainVar++] = new Fix("", "images/double_slide2.jpg", "Twin slide-outs with cherry cabinets", "Interior_Toters_or_Motor_Homes", "")
