<!--//
var Imgs = new Array()

function doc_image(page)
{
  this.n22     = new Image()
  this.n21     = new Image()
  this.n22.src =  page + ".gif"
  this.n21.src =  page + "2.gif"
  return this
}

function load_images(page)
{
  Imgs[page] = new doc_image(page)
}

function swap21(name,text)
{
  status = text
  document[name].src = Imgs[name].n21.src
  return true
}

function swap22(name)
{
  status = ""
  document[name].src = Imgs[name].n22.src
}

load_images("Mladiesfashiongr")
load_images("Mmensfashiongr")
load_images("Mkidsfashiongr")
load_images("UNISEX")

//-->