function random_imglink()
{
 var myimages=new Array()
 //specify random images below. You can have as many as you wish
 myimages[1]="http://beadartcompany.com/images/quad1s.jpg"
 myimages[2]="http://beadartcompany.com/images/quad2s.jpg"
 myimages[3]="http://beadartcompany.com/images/quad3s.jpg"
 myimages[4]="http://beadartcompany.com/images/quad4s.jpg"
 var ry=Math.floor(Math.random()*myimages.length)

 if (ry==0)
    ry=1
    document.write('<img src="'+myimages[ry]+'" border=0>')
}
// -->

