<!-- hide from older browsers

a = 7
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/recipe-button.gif";
b[1].href = "recipes/recipe1.htm";
b[1].alt= "Today's Favorite Recipe";

b[2].src = "images/recipe-button.gif";
b[2].href = "recipes/recipe2.htm";
b[2].alt= "Today's Favorite Recipe";

b[3].src = "images/recipe-button.gif";
b[3].href = "recipes/recipe3.htm";
b[3].alt= "Today's Favorite Recipe";

b[4].src = "images/recipe-button.gif";
b[4].href = "recipes/recipe4.htm";
b[4].alt= "Today's Favorite Recipe";

b[5].src = "images/recipe-button.gif";
b[5].href = "recipes/recipe5.htm";
b[5].alt= "Today's Favorite Recipe";

b[6].src = "images/recipe-button.gif";
b[6].href = "recipes/recipe6.htm";
b[6].alt= "Today's Favorite Recipe";

b[7].src = "images/recipe-button.gif";
b[7].href = "recipes/recipe7.htm";
b[7].alt= "Today's Favorite Recipe";

var image = "";
image += '<a href="' + b[rand2].href + '" target="_blank">';
image += '<img src="' + b[rand2].src + '"';
image += ' border=0 align=center ';
image += ' height=29 width=147 alt="';
image += b[rand2].alt + '">';
image +='</a>'

//-->