<!-- hide from older browsers

a = 11
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/buttons/button46.jpg";
b[1].href = "recipe1.htm";
b[1].alt= "i";

b[2].src = "images/buttons/button46.jpg";
b[2].href = "recipe2.htm";
b[2].alt= "i";

b[3].src = "images/buttons/button46.jpg";
b[3].href = "recipe3.htm";
b[3].alt= "i";

b[4].src = "images/buttons/button46.jpg";
b[4].href = "recipe4.htm";
b[4].alt= "i";

b[5].src = "images/buttons/button46.jpg";
b[5].href = "recipe5.htm";
b[5].alt= "i";

b[6].src = "images/buttons/button46.jpg";
b[6].href = "recipe6.htm";
b[6].alt= "i";

b[7].src = "images/buttons/button46.jpg";
b[7].href = "recipe7.htm";
b[7].alt= "i";

b[8].src = "images/buttons/button46.jpg";
b[8].href = "recipe8.htm";
b[8].alt= "i";

b[9].src = "images/buttons/button46.jpg";
b[9].href = "recipe9.htm";
b[9].alt= "i";

b[10].src = "images/buttons/button46.jpg";
b[10].href = "recipe10.htm";
b[10].alt= "i";

b[11].src = "images/buttons/button46.jpg";
b[11].href = "recipe11.htm";
b[11].alt= "i";

var image = "";
image += '<a href="' + b[rand2].href + '">';
image += '<img src="' + b[rand2].src + '"';
image += ' border=0 align=center ';
image += ' height=50 width=160 alt="';
image += b[rand2].alt + '">';
image +='</a>'

//-->