
function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="cushions/images/calyx-blue-t.jpg"
myimages[2]="cushions/images/calyx-mustard-t.jpg"
myimages[3]="cushions/images/flotilla-t.jpg"
myimages[4]="cushions/images/spectators-t.jpg"
//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="cushions/lucienne-day-calyx-blue-cushion.php"
imagelinks[2]="cushions/lucienne-day-calyx-mustard-cushion.php"
imagelinks[3]="cushions/lucienne-day-flotilla-sage-cushion.php"
imagelinks[4]="cushions/lucienne-day-spectators-maroon-cushion.php"
//specify corresponding alt text below
var textlinks=new Array()
textlinks[1]="handmade lucienne day calyx blue cushion"
textlinks[2]="handmade lucienne day calyx mustard cushion"
textlinks[3]="handmade lucienne day flotilla sage cushion"
textlinks[4]="handmade lucienne day spectators maroon cushion"
//specify corresponding product text below
var product=new Array()
product[1]="Calyx Blue"
product[2]="Calyx Mustard"
product[3]="Flotilla Sage"
product[4]="Spectators Maroon"
//specify corresponding designer text below
var designer=new Array()
designer[1]="Lucienne Day"
designer[2]="Lucienne Day"
designer[3]="Lucienne Day"
designer[4]="Lucienne Day"

//Do not alter below this line
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href= '+' "'+imagelinks[ry]+'" '+' target="_parent"><img src=' +myimages[ry]+' alt="'+textlinks[ry]+'" border=0><br><span>'+product[ry]+'</span></a><br>'+designer[ry])

}
random_imglink()