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

function doc_image(page)
{
  this.n0     = new Image()
  this.n1     = new Image()
  this.n0.src =  page + ".gif"
  this.n1.src =  page + "_over.gif"
  return this
}

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

function swap1(name,text)
{
  status = text
  document[name].src = Img[name].n1.src
  return true
}

function swap0(name)
{
  status = ""
  document[name].src = Img[name].n0.src
}

load_images("blueround_b4")
load_images("blueround_b5")
load_images("blueround_b6")
load_images("blueround_b11")
load_images("blueround_b14")


//-->