function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="/rotate/dessert-gift-bars.jpg"
myimages[2]="/rotate/chocolate-fudge-cake.jpg"
//myimages[3]="/rotate/lasting-impressions.jpg"
//myimages[3]="/rotate/welcome-baby-girl.jpg"
//myimages[4]="/rotate/winter-orchard.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.susansbasketstore.com/product_info.php?products_id=1923"
imagelinks[2]="http://www.susansbasketstore.com/product_info.php?products_id=1911"
//imagelinks[3]="http://www.susansbasketstore.com/product_info.php?products_id=1455"
//imagelinks[3]="http://www.susansbasketstore.com/product_info.php?products_id=1247"
//imagelinks[4]="http://www.susansbasketstore.com/product_info.php?products_id=1469"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()