Problems with depth of xml menu

hi, im working on a site for a friend of mine and he purchased a gallery template from a tempalte site. it came with an xml menu system which is pretty nice and allows you to have either links directly to a gallery or links that are folders that drop down and contain multiple links to galleries. so my current structure kinda looks like this:

 
gallery link
gallery link
folder
     gallery link
     gallery link
folder
     gallery link
     gallery link

this is nice but I would like to add more depth to the menu and make it so i could have a folder inside a folder to have a more precise menu. this is the structure i want to be able to achieve:

 
gallery link
gallery link
folder
     gallery link
     folder
          gallery link
          gallery link
          gallery link
      folder 
          gallery link
          gallery link
folder
      gallery link
      gallery link

with this structure i could have folders inside folders. but could also have the option to have a gallery link on the same level as a folder, both inside a parent folder.

I tried modifying the xml but it just makes the gallery menu all screwed up. and so I decided to get into the code, but im a little lost. I’m not sure how to arrange it so it can have the folder in a folder. i basically was duplicating the code for the folder and pasting it within the code i copied but this is not working. obviously. i tried some tutorials on xml menus but the tutorials were so basic and this was so advanced I couldnt see the similarities between the two.

If anyone could help I would be most appreciative. below is the code that I was playing with:

function init(xmlconfnode) {
 var curnode = xmlconfnode.firstChild, goahead = true;
 var curitemmov = null, curitemmov = null;
 var auxtext = "";
 while (curnode != null) {
  if (curnode.nodeName == "galleries") {
   goahead = true;
   curnode = curnode.firstChild;
   while (goahead) {
    if (curnode.nodeName == "gallery") {
     additem(curnode, "g");
    } else if (curnode.nodeName == "folder") {
     curitemmov = additem(curnode, "f");
     curnode = curnode.firstChild;
     while (true) {
      if (curnode.nodeName == "gallery") {
       additem(curnode, "g", curitemmov);
      }
      if (curnode.nextSibling == null) {
       curnode = curnode.parentNode;
       break;
      } else {
       curnode = curnode.nextSibling;
      }
     }
    }
    if (curnode.nextSibling != null) {
     curnode = curnode.nextSibling;
    } else {
     goahead = false;
    }
   }
   curnode = curnode.parentNode;
  } else if (curnode.nodeName == "section") {
   additem(curnode, "s");
  }
  curnode = curnode.nextSibling;
 }
 parsed = true;
}

heres the whole code on this menu movieclip:

var count = 0, gcount = 0, rcount = 0, maxwidth = 0;
var itemheight = 20, paresed = false;
var me = this;
var presseditem = null;
var mousestate = "over";
this.onMouseMove = function() {
 // trace(this + ".onRollOut");
 // trace(this.hitTest(_root._xmouse, _root._ymouse) + " " + this.mousestate);
 if (this.hitTest(_root._xmouse, _root._ymouse) == false) {
  if (this.mousestate != "out") {
   this.mousestate = "out";
   this._parent.menumask.onEnterFrame = function() {
    this._parent.menucaption._y = this._y-this._height+1;
    this._y = this._parent.menumov._y+this._parent.menumov._height;
    if (this._height<this._parent.menumov._height-1) {
     this._height += (this._parent.menumov._height-this._height)*0.18;
    } else {
     this._height = this._parent.menumov._height;
     this.onEnterFrame = null;
     this.state = "unrolled";
     this._parent.menucaption.gotoAndPlay("show");
    }
   };
  }
 } else {
  if (this.mousestate != "over") {
   this.mousestate = "over";
   this._parent.menucaption.gotoAndPlay("hide");
   this._parent.menumask.onEnterFrame = function() {
    this.state = "rolledup";
    this._parent.menucaption._y = this._y-this._height+1;
    this._y = this._parent.menumov._y+this._parent.menumov._height;
    if (this._height>1) {
     this._height *= 0.83;
    } else {
     this._height = 0;
     this.onEnterFrame = null;
    }
   };
  }
 }
};
function recalcmaskheight() {
 if (me._parent.menumask.state == "unrolled") {
  me._parent.menumask._height = me._height;
 }
 me._parent.menumask._y = me._y+me._height;
 me._parent.menucaption._y = me._parent.menumask._y-me._parent.menumask._height+1;
}
function init(xmlconfnode) {
 var curnode = xmlconfnode.firstChild, goahead = true;
 var curitemmov = null, curitemmov = null;
 var auxtext = "";
 while (curnode != null) {
  if (curnode.nodeName == "galleries") {
   goahead = true;
   curnode = curnode.firstChild;
   while (goahead) {
    if (curnode.nodeName == "gallery") {
     additem(curnode, "g");
    } else if (curnode.nodeName == "folder") {
     curitemmov = additem(curnode, "f");
     curnode = curnode.firstChild;
     while (true) {
      if (curnode.nodeName == "gallery") {
       additem(curnode, "g", curitemmov);
      }
      if (curnode.nextSibling == null) {
       curnode = curnode.parentNode;
       break;
      } else {
       curnode = curnode.nextSibling;
      }
     }
    }
    if (curnode.nextSibling != null) {
     curnode = curnode.nextSibling;
    } else {
     goahead = false;
    }
   }
   curnode = curnode.parentNode;
  } else if (curnode.nodeName == "section") {
   additem(curnode, "s");
  }
  curnode = curnode.nextSibling;
 }
 parsed = true;
}
function additem(node, type, parent) {
 var itemmov = null;
 if (parent == undefined) {
  parent = null;
 }
 count++;
 if (count == 1) {
  itemmov = item1;
  itemmov._y = 0;
 } else {
  item1.duplicateMovieClip("item"+count, count);
  itemmov = eval("item"+count);
  itemmov._y = 0;
 }
 itemmov._type = type;
 itemmov.__parent = parent;
 itemmov._sectiontype = node.attributes.type;
 itemmov._children = null;
 if (parent != null) {
  if (parent._children == null) {
   parent._children = new Array();
  }
  parent._children.push(itemmov);
 }
 if ((type == "g" and parent == null) or type == "f") {
  gcount++;
 }
 if (not itemmov.settext(node.attributes.name)) {
  itemmov._caption = node.attributes.name;
 }
 // 
 if (node.attributes.bydefault == "true") {
  itemmov.bydefault = true;
  // trace("yeahhh");
 }
 // 
 itemmov._alpha = 0;
 itemmov._start = function() {
  this.onEnterFrame = function() {
   if (this._alpha<100) {
    this._alpha += 20;
   } else {
    this.onEnterFrame = null;
   }
   if (this._alpha>20) {
    this._next._start();
   }
  };
 };
 return itemmov;
}
function widthreport(newwidth) {
 var i = 0, itemmov = null, cury = 0;
 var curitem = null;
 rcount++;
 if (newwidth>maxwidth) {
  maxwidth = newwidth;
 }
 if (rcount == count && parsed) {
  cury = -5;
  for (i=1; i<=count; i++) {
   itemmov = eval("item"+i);
   if ((itemmov._type == "g" and itemmov.__parent == null) or itemmov._type == "f") {
    itemmov._y = cury;
    cury += itemheight;
    // itemmov._x = maxwidth - itemmov._width;
    itemmov._x = 0;
    itemmov.backmov._width = maxwidth;
    itemmov._prev = curitem;
    curitem = itemmov;
    if (itemmov._type == "f") {
     for (j=0; j<itemmov._children.length; j++) {
      // itemmov._children[j]._x = maxwidth - itemmov._children[j]._width;
      itemmov._children[j]._x = 0;
      itemmov._children[j]._y = cury;
      itemmov._children[j]._height = 0;
      itemmov._children[j].backmov._width = maxwidth;
      // cury += itemheight;
      // itemmov._children[j]._start();
     }
     for (j=0; j<itemmov._children.length; j++) {
      if (j>0) {
       itemmov._children[j]._prev = itemmov._children[j-1];
      } else {
       itemmov._children[j]._prev = null;
      }
      if (j<itemmov._children.length-1) {
       itemmov._children[j]._next = itemmov._children[j+1];
      } else {
       itemmov._children[j]._next = null;
      }
     }
    }
   }
  }
  cury += 7;
  for (i=1; i<=count; i++) {
   itemmov = eval("item"+i);
   if (itemmov._type == "s") {
    itemmov._y = cury;
    cury += itemheight;
    // itemmov._x = maxwidth - itemmov._width;
    itemmov._x = 0;
    itemmov.backmov._width = maxwidth;
    itemmov._prev = curitem;
    curitem = itemmov;
   }
  }
  while (curitem._prev != null) {
   curitem._prev._next = curitem;
   curitem = curitem._prev;
  }
  _parent.menumask._width = maxwidth+10;
  _parent.menumask._y = count*itemheight;
  _parent.menumask._height = 0;
  if (me.hitTest(_root._xmouse, _root._ymouse)) {
   me.mousestate = "over";
   _parent.menumask._height = 0;
  } else {
   me.mousestate = "out";
   _parent.menumask._height = me._height+5;
   _parent.menumask._y = me._y+me._height;
  }
  _parent.menucaption.separator._width = maxwidth;
  _parent.menucaption.tfmask._width = maxwidth+10;
  _parent.menucaption.tf._width = maxwidth;
  _parent.menucaption.onEnterFrame = function() {
   if (this._alpha<100) {
    this._alpha += 5;
   } else {
    this.onEnterFrame = null;
   }
  };
 }
 _parent.imageholder._x = me._x+maxwidth-384;
 _parent.mask._x = _parent.imageholder._x;
 curitem._start();
}
stop();

this is the xml structure:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<config>
 <galleries>
  <folder name="details ">
   <gallery name="something " bydefault="true">
    <img src="anne10blur.jpg" width="576" height="384" infotext="chrystal"/>
    <img src="anne15.jpg" width="384" height="576"  infotext="is"  />
    <img src="Snow39a.jpg" width="600" height="409"  infotext="a"  />
    <img src="awalamo4.jpg" width="412" height="600"  infotext="bung"  />
    <img src="awalamo1.jpg" width="409" height="600"  infotext="hole"  />
    <img src="awamsterdam1.jpg" width="407" height="600"  infotext="Some photo"  />
    <img src="awarch7.jpg" width="576" height="404"  infotext="Some photo"  />
    <img src="awarch6.jpg" width="400" height="576"  infotext="Some photo"  />
    <img src="awbarcelona5a.jpg" width="700" height="476"  infotext="Some photo"  />
    <img src="awborabora13.jpg" width="600" height="410"  infotext="Some photo"  />
    <img src="awborabora15a.jpg" width="700" height="470"  infotext="Some photo"  />
    <img src="awcable1.jpg" width="576" height="401"  infotext="Some photo"  />
    <img src="awborabora21a.jpg" width="388" height="576"  infotext="Some photo"  />
    <img src="awcabo17.jpg" width="576" height="384"  infotext="Some photo"  />
    <img src="awcabo38.jpg" width="576" height="409"  infotext="Some photo"  />
    <img src="awcabo57a.jpg" width="700" height="472"  infotext="Some photo"  />
    <img src="awcabo57a.jpg" width="700" height="472"  infotext="Some photo"  />
    <img src="awcabo59a.jpg" width="700" height="467"  infotext="Some photo"  />
    <img src="awkauai1a.jpg" width="816" height="531"  infotext="Some photo"  />
    <img src="awkauai3a.jpg" width="468" height="700"  infotext="Some photo"  />
    <img src="awkauai5a.jpg" width="700" height="468"  infotext="Some photo"  />
    <img src="awkauai6a.jpg" width="398" height="600"  infotext="Some photo"  />
    <img src="awkauai7.jpg" width="600" height="403"  infotext="Some photo"  />
    <img src="awkauai7b.jpg" width="576" height="403"  infotext="Some photo"  />
 
   </gallery>
   <gallery name="a bit different ">
    <img src="awcabo5a.jpg" width="401" height="600"  infotext="Some photo"  />
    <img src="awcambria1.jpg" width="384" height="576"  infotext="Some photo"  />
    <img src="awcarmel1.jpg" width="400" height="576"  infotext="Some photo"  />
    <img src="awcentralcoast1a.jpg" width="700" height="468"  infotext="Some photo"  />
    <img src="awclock1.jpg" width="404" height="600"  infotext="Some photo"  />
    <img src="awcoffee2.jpg" width="404" height="600"  infotext="Some photo"  />
    <img src="awcoffee2a.jpg" width="700" height="470"  infotext="Some photo"  />
    <img src="awcolumbia2.jpg" width="600" height="401"  infotext="Some photo"  />
    <img src="awborabora17a.jpg" width="470" height="700"  infotext="Some photo"  />
 
   </gallery>
   <gallery name="than ">
    <img src="awdisney2.jpg" width="600" height="404"  infotext="Some photo"  />
    <img src="awdvalley1.jpg" width="384" height="576"  infotext="Some photo"  />
    <img src="awellsstar3a.jpg" width="700" height="466"  infotext="Some photo"  />
    <img src="awfrankfurt1.jpg" width="600" height="397"  infotext="Some photo"  />
    <img src="awfremont1.jpg" width="576" height="408"  infotext="Some photo"  />
    <img src="awharstene9.jpg" width="600" height="450"  infotext="Some photo"  />
    <img src="awgolden11.jpg" width="600" height="394"  infotext="Some photo"  />
    <img src="awkansasc4a.jpg" width="700" height="465"  infotext="Some photo"  />
    <img src="awkansas2.jpg" width="600" height="404"  infotext="Some photo"  />
    <img src="awkansasc4a.jpg" width="700" height="465"  infotext="Some photo"  />
    <img src="awkauai16a.jpg" width="700" height="462"  infotext="Some photo"  />
 
   </gallery>
   <gallery name="usual ">
    <img src="awkauai1a.jpg" width="816" height="531"  infotext="Some photo"  />
    <img src="awkauai3a.jpg" width="468" height="700"  infotext="Some photo"  />
    <img src="awkauai5a.jpg" width="700" height="468"  infotext="Some photo"  />
    <img src="awkauai6a.jpg" width="398" height="600"  infotext="Some photo"  />
    <img src="awkauai7.jpg" width="600" height="403"  infotext="Some photo"  />
    <img src="awkauai7b.jpg" width="576" height="403"  infotext="Some photo"  />
 
   </gallery>
  </folder>
  <folder name="international ">
   <gallery name="places ">
    <img src="awlajolla11.jpg" width="600" height="405"  infotext="Some photo"  />
    <img src="awmanayunk1a.jpg" width="700" height="472"  infotext="Some photo"  />
    <img src="awmaui15a.jpg" width="400" height="600"  infotext="Some photo"  />
    <img src="awmaui22a.jpg" width="700" height="467"  infotext="Some photo"  />
    <img src="awmaui23a.jpg" width="700" height="468"  infotext="Some photo"  />
    <img src="awmaui8a.jpg" width="398" height="600"  infotext="Some photo"  />
    <img src="awmittenwald1a.jpg" width="700" height="473"  infotext="Some photo"  />
    <img src="awmittenwald4a.jpg" width="401" height="600"  infotext="Some photo"  />
    <img src="awnewyork1.jpg" width="600" height="404"  infotext="Some photo"  />
    <img src="awnewyork12.jpg" width="405" height="600"  infotext="Some photo"  />
    <img src="awnewyork14.jpg" width="600" height="406"  infotext="Some photo"  />
    <img src="awnewyork9.jpg" width="600" height="405"  infotext="Some photo"  />
    <img src="awnewyork3.jpg" width="408" height="600"  infotext="Some photo"  />
    <img src="awoahu4.jpg" width="400" height="576"  infotext="Some photo"  />
    <img src="awoahu7.jpg" width="402" height="600"  infotext="Some photo"  />
 
   </gallery>
   <gallery name="people ">
     <img src="awoahu9.jpg" width="604" height="400"  infotext="Some photo"  />
    <img src="awpar3.jpg" width="600" height="895"  infotext="Some photo"  />
    <img src="awpenn1a.jpg" width="700" height="472"  infotext="Some photo"  />
    <img src="awpenn2a.jpg" width="700" height="474"  infotext="Some photo"  />
    <img src="awphila1.jpg" width="576" height="384"  infotext="Some photo"  />
    <img src="awpigeon1.jpg" width="402" height="600"  infotext="Some photo"  />
    <img src="awrhine1a.jpg" width="576" height="402"  infotext="Some photo"  />
    <img src="awsacramento15.jpg" width="576" height="405"  infotext="Some photo"  />
    <img src="awsanjose2.jpg" width="576" height="395"  infotext="Some photo"  />
    <img src="awscot3a.jpg" width="402" height="600"  infotext="Some photo"  />
    <img src="awscot5.jpg" width="404" height="600"  infotext="Some photo"  />
    <img src="awseaquest14.jpg" width="576" height="401"  infotext="Some photo"  />
    <img src="awseaquest35.jpg" width="576" height="384"  infotext="Some photo"  />
    <img src="awseaquest4.jpg" width="600" height="405"  infotext="Some photo"  />
    <img src="awspace4.jpg" width="576" height="407"  infotext="Some photo"  />
    <img src="awtodos2.jpg" width="576" height="403"  infotext="Some photo"  />
    <img src="awtriberg2a.jpg" width="700" height="472"  infotext="Some photo"  />
    <img src="awvenice1b.jpg" width="576" height="401"  infotext="Some photo"  />
    <img src="awwashingtonroad1.jpg" width="408" height="576"  infotext="Some photo"  />
    <img src="awyellowstone1.jpg" width="379" height="576"  infotext="Some photo"  />
    <img src="awyosemite1.jpg" width="600" height="403"  infotext="Some photo"  />
    <img src="awzillah1a.jpg" width="700" height="469"  infotext="Some photo"  />
    <img src="DABN0107.jpg" width="360" height="576"  infotext="Some photo"  />
    <img src="DSCN1023.jpg" width="450" height="600"  infotext="Some photo"  />
    <img src="DSCN1074.jpg" width="600" height="450"  infotext="Some photo"  />
   </gallery>
  </folder>
  <gallery name="lifestyle ">                                    
   <img src="awcolumbia2.jpg" width="600" height="401"  infotext="Some photo"  />
   <img src="awborabora17a.jpg" width="470" height="700"  infotext="Some photo"  />
   <img src="awdisney2.jpg" width="600" height="404"  infotext="Some photo"  />
   <img src="awdvalley1.jpg" width="384" height="576"  infotext="Some photo"  />
   <img src="awellsstar3a.jpg" width="700" height="466"  infotext="Some photo"  />
   <img src="awfrankfurt1.jpg" width="600" height="397"  infotext="Some photo"  />
   <img src="awfremont1.jpg" width="576" height="408"  infotext="Some photo"  />
   <img src="awharstene9.jpg" width="600" height="450"  infotext="Some photo"  />
   <img src="awgolden11.jpg" width="600" height="394"  infotext="Some photo"  />
   <img src="awkansasc4a.jpg" width="700" height="465"  infotext="Some photo"  />
   <img src="awkansas2.jpg" width="600" height="404"  infotext="Some photo"  />
   <img src="awkansasc4a.jpg" width="700" height="465"  infotext="Some photo"  />
   <img src="awkauai16a.jpg" width="700" height="462"  infotext="Some photo"  />
   <img src="awkauai1a.jpg" width="816" height="531"  infotext="Some photo"  />
   <img src="awkauai3a.jpg" width="468" height="700"  infotext="Some photo"  />
   <img src="awkauai5a.jpg" width="700" height="468"  infotext="Some photo"  />
   <img src="awkauai6a.jpg" width="398" height="600"  infotext="Some photo"  />
   <img src="awkauai7.jpg" width="600" height="403"  infotext="Some photo"  />
   <img src="awkauai7b.jpg" width="576" height="403"  infotext="Some photo"  />
   <img src="awlajolla11.jpg" width="600" height="405"  infotext="Some photo"  />
   <img src="awmanayunk1a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awmaui15a.jpg" width="400" height="600"  infotext="Some photo"  />
   <img src="awmaui22a.jpg" width="700" height="467"  infotext="Some photo"  />
   <img src="awmaui23a.jpg" width="700" height="468"  infotext="Some photo"  />
   <img src="awmaui8a.jpg" width="398" height="600"  infotext="Some photo"  />
   <img src="awmittenwald1a.jpg" width="700" height="473"  infotext="Some photo"  />
   <img src="awmittenwald4a.jpg" width="401" height="600"  infotext="Some photo"  />
   <img src="awnewyork1.jpg" width="600" height="404"  infotext="Some photo"  />
   <img src="awnewyork12.jpg" width="405" height="600"  infotext="Some photo"  />
   <img src="awnewyork14.jpg" width="600" height="406"  infotext="Some photo"  />
   <img src="awnewyork9.jpg" width="600" height="405"  infotext="Some photo"  />
   <img src="awnewyork3.jpg" width="408" height="600"  infotext="Some photo"  />
   <img src="awoahu4.jpg" width="400" height="576"  infotext="Some photo"  />
   <img src="awoahu7.jpg" width="402" height="600"  infotext="Some photo"  />
   <img src="awoahu9.jpg" width="604" height="400"  infotext="Some photo"  />
   <img src="awpar3.jpg" width="600" height="895"  infotext="Some photo"  />
   <img src="awpenn1a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awpenn2a.jpg" width="700" height="474"  infotext="Some photo"  />
   <img src="awphila1.jpg" width="576" height="384"  infotext="Some photo"  />
  </gallery>
  <gallery name="moments ">   
   <img src="awnewyork14.jpg" width="600" height="406"  infotext="Some photo"  />
   <img src="awnewyork9.jpg" width="600" height="405"  infotext="Some photo"  />
   <img src="awnewyork3.jpg" width="408" height="600"  infotext="Some photo"  />
   <img src="awoahu4.jpg" width="400" height="576"  infotext="Some photo"  />
   <img src="awoahu7.jpg" width="402" height="600"  infotext="Some photo"  />
   <img src="awoahu9.jpg" width="604" height="400"  infotext="Some photo"  />
   <img src="awpar3.jpg" width="600" height="895"  infotext="Some photo"  />
   <img src="awpenn1a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awpenn2a.jpg" width="700" height="474"  infotext="Some photo"  />
   <img src="awphila1.jpg" width="576" height="384"  infotext="Some photo"  />
   <img src="awpigeon1.jpg" width="402" height="600"  infotext="Some photo"  />
   <img src="awrhine1a.jpg" width="576" height="402"  infotext="Some photo"  />
   <img src="awsacramento15.jpg" width="576" height="405"  infotext="Some photo"  />
   <img src="awsanjose2.jpg" width="576" height="395"  infotext="Some photo"  />
   <img src="awscot3a.jpg" width="402" height="600"  infotext="Some photo"  />
   <img src="awscot5.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awseaquest14.jpg" width="576" height="401"  infotext="Some photo"  />
   <img src="awseaquest35.jpg" width="576" height="384"  infotext="Some photo"  />
   <img src="awseaquest4.jpg" width="600" height="405"  infotext="Some photo"  />
   <img src="awspace4.jpg" width="576" height="407"  infotext="Some photo"  />
   <img src="awtodos2.jpg" width="576" height="403"  infotext="Some photo"  />
   <img src="awtriberg2a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awvenice1b.jpg" width="576" height="401"  infotext="Some photo"  />
  </gallery>
  <gallery name="nature ">                                    
   <img src="awrhine1a.jpg" width="576" height="402"  infotext="Some photo"  />
   <img src="awsacramento15.jpg" width="576" height="405"  infotext="Some photo"  />
   <img src="awsanjose2.jpg" width="576" height="395"  infotext="Some photo"  />
   <img src="awscot3a.jpg" width="402" height="600"  infotext="Some photo"  />
   <img src="awscot5.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awseaquest14.jpg" width="576" height="401"  infotext="Some photo"  />
   <img src="awseaquest35.jpg" width="576" height="384"  infotext="Some photo"  />
   <img src="awseaquest4.jpg" width="600" height="405"  infotext="Some photo"  />
   <img src="awspace4.jpg" width="576" height="407"  infotext="Some photo"  />
   <img src="awtodos2.jpg" width="576" height="403"  infotext="Some photo"  />
   <img src="awtriberg2a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awvenice1b.jpg" width="576" height="401"  infotext="Some photo"  />
   <img src="awwashingtonroad1.jpg" width="408" height="576"  infotext="Some photo"  />
   <img src="awyellowstone1.jpg" width="379" height="576"  infotext="Some photo"  />
   <img src="awyosemite1.jpg" width="600" height="403"  infotext="Some photo"  />
   <img src="awzillah1a.jpg" width="700" height="469"  infotext="Some photo"  />
   <img src="DABN0107.jpg" width="360" height="576"  infotext="Some photo"  />
   <img src="DSCN1023.jpg" width="450" height="600"  infotext="Some photo"  />
  </gallery>
  <gallery name="time ">                                    
   <img src="awborabora13.jpg" width="600" height="410"  infotext="Some photo"  />
   <img src="awborabora15a.jpg" width="700" height="470"  infotext="Some photo"  />
   <img src="awcable1.jpg" width="576" height="401"  infotext="Some photo"  />
   <img src="awborabora21a.jpg" width="388" height="576"  infotext="Some photo"  />
   <img src="awcabo17.jpg" width="576" height="384"  infotext="Some photo"  />
   <img src="awcabo38.jpg" width="576" height="409"  infotext="Some photo"  />
   <img src="awcabo57a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awcabo57a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awcabo59a.jpg" width="700" height="467"  infotext="Some photo"  />
   <img src="awcabo5a.jpg" width="401" height="600"  infotext="Some photo"  />
   <img src="awcambria1.jpg" width="384" height="576"  infotext="Some photo"  />
   <img src="awcarmel1.jpg" width="400" height="576"  infotext="Some photo"  />
   <img src="awcentralcoast1a.jpg" width="700" height="468"  infotext="Some photo"  />
   <img src="awclock1.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awcoffee2.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awcoffee2a.jpg" width="700" height="470"  infotext="Some photo"  />
   <img src="awcolumbia2.jpg" width="600" height="401"  infotext="Some photo"  />
   <img src="awborabora17a.jpg" width="470" height="700"  infotext="Some photo"  />
   <img src="awdisney2.jpg" width="600" height="404"  infotext="Some photo"  />
   <img src="awdvalley1.jpg" width="384" height="576"  infotext="Some photo"  />
  </gallery>
  <gallery name="unusual ">                                    
   <img src="awborabora21a.jpg" width="388" height="576"  infotext="Some photo"  />
   <img src="awcabo17.jpg" width="576" height="384"  infotext="Some photo"  />
   <img src="awcabo38.jpg" width="576" height="409"  infotext="Some photo"  />
   <img src="awcabo57a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awcabo57a.jpg" width="700" height="472"  infotext="Some photo"  />
   <img src="awcabo59a.jpg" width="700" height="467"  infotext="Some photo"  />
   <img src="awcabo5a.jpg" width="401" height="600"  infotext="Some photo"  />
   <img src="awcambria1.jpg" width="384" height="576"  infotext="Some photo"  />
   <img src="awcarmel1.jpg" width="400" height="576"  infotext="Some photo"  />
   <img src="awcentralcoast1a.jpg" width="700" height="468"  infotext="Some photo"  />
   <img src="awclock1.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awcoffee2.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awcoffee2a.jpg" width="700" height="470"  infotext="Some photo"  />
   <img src="awcolumbia2.jpg" width="600" height="401"  infotext="Some photo"  />
   <img src="awborabora17a.jpg" width="470" height="700"  infotext="Some photo"  />
   <img src="awdisney2.jpg" width="600" height="404"  infotext="Some photo"  />
   <img src="awdvalley1.jpg" width="384" height="576"  infotext="Some photo"  />
   <img src="awellsstar3a.jpg" width="700" height="466"  infotext="Some photo"  />
   <img src="awfrankfurt1.jpg" width="600" height="397"  infotext="Some photo"  />
   <img src="awfremont1.jpg" width="576" height="408"  infotext="Some photo"  />
   <img src="awharstene9.jpg" width="600" height="450"  infotext="Some photo"  />
  </gallery>
  <gallery name="usa ">                                     
   <img src="awcambria1.jpg" width="384" height="576"  infotext="Some photo"  />
   <img src="awcarmel1.jpg" width="400" height="576"  infotext="Some photo"  />
   <img src="awcentralcoast1a.jpg" width="700" height="468"  infotext="Some photo"  />
   <img src="awclock1.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awcoffee2.jpg" width="404" height="600"  infotext="Some photo"  />
   <img src="awcoffee2a.jpg" width="700" height="470"  infotext="Some photo"  />
   <img src="awcolumbia2.jpg" width="600" height="401"  infotext="Some photo"  />
   <img src="awborabora17a.jpg" width="470" height="700"  infotext="Some photo"  />
   <img src="awdisney2.jpg" width="600" height="404"  infotext="Some photo"  />
   <img src="awdvalley1.jpg" width="384" height="576"  infotext="Some photo"  />
   <img src="awellsstar3a.jpg" width="700" height="466"  infotext="Some photo"  />
   <img src="awfrankfurt1.jpg" width="600" height="397"  infotext="Some photo"  />
   <img src="awfremont1.jpg" width="576" height="408"  infotext="Some photo"  />
   <img src="awharstene9.jpg" width="600" height="450"  infotext="Some photo"  />
   <img src="awgolden11.jpg" width="600" height="394"  infotext="Some photo"  />
   <img src="awkansasc4a.jpg" width="700" height="465"  infotext="Some photo"  />
   <img src="awkansas2.jpg" width="600" height="404"  infotext="Some photo"  />
   <img src="awkansasc4a.jpg" width="700" height="465"  infotext="Some photo"  />
   <img src="awkauai16a.jpg" width="700" height="462"  infotext="Some photo"  />
   <img src="awkauai1a.jpg" width="816" height="531"  infotext="Some photo"  />
   <img src="awkauai3a.jpg" width="468" height="700"  infotext="Some photo"  />
   <img src="awkauai5a.jpg" width="700" height="468"  infotext="Some photo"  />
   <img src="awkauai6a.jpg" width="398" height="600"  infotext="Some photo"  />
   <img src="awkauai7.jpg" width="600" height="403"  infotext="Some photo"  />
   <img src="awkauai7b.jpg" width="576" height="403"  infotext="Some photo"  />
<img src="awlajolla11.jpg" width="600" height="405"  infotext="Some photo"  />
  </gallery>
 </galleries>
 <section name="bio " width="420" height="520">
  <p></p><br/>
  <p><font size="50">bio</font></p><br/>
  </section>
 <section name="links " width="240" height="350">
  <p></p><br/>
  <p><font size="50">links</font></p><br/>
  <p><font size="14">wonderful link 1</font></p>
  <p><font size="14">wonderful link 2</font></p>
  <p><font size="14">wonderful link 3</font></p>
  <p><font size="14">wonderful link 4</font></p>
  <p><font size="14">almost as wonderful link 5</font></p>
  <p><font size="14">ok link 6</font></p>
 </section>
 <section name="contact " width="390" height="300" type="contact">
  </section>
</config>

please if anyone can help I would be most appreciative. :puzzle: you can see the gallery and the nav at this link: http://www.rizndesigns.com/new2/main.html