function spinhome() 
{
var minad=1
var maxad=5
var ad=(Math.floor(Math.random()*(maxad-minad+1)+minad))

if (ad==1) {
title="Volunteering";
alt="Volunteering";
pic="/home/photossource/volunteer.gif";
}
if (ad==2) {
title="Plant Exchange";
alt="Plant Exchange";
pic="/home/photossource/plantexchange.gif";
}
if (ad==3) {
title="Front Yards in Bloom";
alt="Front Yards in Bloom";
pic="/home/photossource/frontyards.gif";
}
if (ad==4) {
title="Open Gardens";
alt="Open Gardens";
pic="/home/photossource/opengardens.gif";
}
if (ad==5) {
title="Home and Garden Show";
alt="Home and Garden Show";
pic="/home/photossource/HGshow.gif";
}


document.write('<img src="' + pic + '" width=300')
document.write( + ' height=225' + ' ')
document.write(' title="' + title + '"')
document.write('alt="' + alt + '" border=0>')
}