a = 10
var rand1 = Math.random();
var rand2 = Math.round(rand1 * (a-1))+1;

function create() {

    this.src = ' ';
    this.href = ' ';
    this.alt = ' ';

}

b = new Array();

for (var i = 1; i <= a; i++) {b[i]=new create() }

b[1].src = "../images/top-right/coke.gif";
b[1].href = "";
b[1].alt= "";

b[2].src = "../images/top-right/doghouse.jpg";
b[2].href = "";
b[2].alt= "";

b[3].src = "../images/top-right/store3.jpg";
b[3].href = "";
b[3].alt= "";

b[4].src = "../images/top-right/store4.jpg";
b[4].href = "";
b[4].alt= "";

b[5].src = "../images/top-right/store3.jpg";
b[5].href = "";
b[5].alt= "";

b[6].src = "../images/top-right/store4.jpg";
b[6].href = "";
b[6].alt= "";

b[7].src = "../images/top-right/new_pa1.jpg";
b[7].href = "";
b[7].alt= "";

b[8].src = "../images/top-right/new_pa2.jpg";
b[8].href = "";
b[8].alt= "";

b[9].src = "../images/top-right/new_pa3.jpg";
b[9].href = "";
b[9].alt= "";

b[10].src = "../images/top-right/new_pa4.jpg";
b[10].href = "";
b[10].alt= "";

var image = "";
image += '<a href="' + b[rand2].href + '" target="_blank">';
image += '<img src="' + b[rand2].src + '"';
image += ' border=0 align=center ';
image += ' height=110 width=166 alt="';
image += b[rand2].alt + '">';
image +='</a>'

//-->
