/**
 * mm_menu 20MAR2002 Version 6.0
 * Andy Finnell, March 2002
 * Copyright (c) 2000-2002 Macromedia, Inc.
 *
 * based on menu.js
 * by gary smith, July 1997
 * Copyright (c) 1997-1999 Netscape Communications Corp.
 *
 * Netscape grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 */

function image(_name, _width, _height, _border) {

  this.name = _name;

  this.width = _width;

  this.height = _height;

  this.height = _border;

}


jslogo = new Array();

jslogo[0] = new image("images/top_1.jpg", 799, 68, 0);

jslogo[1] = new image("images/top_2.jpg", 799, 68, 0);

jslogo[2] = new image("images/top_3.jpg", 799, 68, 0);

jslogo[3] = new image("images/top_4.jpg", 799, 68, 0);

jslogo[4] = new image("images/top_5.jpg", 799, 68, 0);

jslogo[5] = new image("images/top_6.jpg", 799, 68, 0);

jslogo[6] = new image("images/top_7.jpg", 799, 68, 0);

jslogo[7] = new image("images/top_8.jpg", 799, 68, 0);

jslogo[8] = new image("images/top_9.jpg", 799, 68, 0);

jslogo[9] = new image("images/top_10.jpg", 799, 68, 0);

jslogo[10] = new image("images/top_11.jpg", 799, 68, 0);

jslogo[11] = new image("images/top_12.jpg", 799, 68, 0);

jslogo[12] = new image("images/top_13.jpg", 799, 68, 0);

jslogo[13] = new image("images/top_14.jpg", 799, 68, 0);

jslogo[14] = new image("images/top_15.jpg", 799, 68, 0);

jslogo[15] = new image("images/top_16.jpg", 799, 68, 0);

jslogo[16] = new image("images/top_17.jpg", 799, 68, 0);

jslogo[17] = new image("images/top_18.jpg", 799, 68, 0);

jslogo[18] = new image("images/top_19.jpg", 799, 68, 0);

function randomImageTag(imgs) {


  var idx = Math.floor(Math.random() * imgs.length);

  var tag = "<img src=\"" + imgs[idx].name + "\"";

  if (imgs[idx].width != 0)

    tag += " width=" + imgs[idx].width;

  if (imgs[idx].height != 0)

    tag += " height=" + imgs[idx].height;

  if (imgs[idx].border != 0)

    tag += " border=" + imgs[idx].border;

  tag += ">";

  tag += "<br>";

  return tag;

}


