// Random images
//
// -----------------------------Array_01 ----------------------------
var imagenumber_01 = 4; //# of images
var randomnumber_01 = Math.random() ;
var rand_01 = Math.round( (imagenumber_01-1) * randomnumber_01) + 1 ;
images_01 = new Array;
images_01[1] = "/lands/abbeygate_street.jpg";
images_01[2] = "/lands/angel_hill.jpg";
images_01[3] = "/lands/crown_street.jpg";
images_01[4] = "/lands/fire_cnr_hatter_st.jpg";
var image_01 = images_01[rand_01];
alts_01 = new Array;
alts_01[1] = "Historical images of Bury St Edmunds: Abbeygate Street";
alts_01[2] = "Historical images of Bury St Edmunds: Angel Hill";
alts_01[3] = "Historical images of Bury St Edmunds: Crown Street";
alts_01[4] = "Historical images of Bury St Edmunds: Fire on Abbeygate Street";
var alt_01 = alts_01[rand_01];

// -----------------------------Array_02  ----------------------------
var imagenumber_02 = 4; //# of images
var randomnumber_02 = Math.random() ;
var rand_02 = Math.round( (imagenumber_02-1) * randomnumber_02) + 1 ;
images_02 = new Array;
images_02[1] = "/lands/fox_inn.jpg";
images_02[2] = "/lands/half_moon_yard.jpg";
images_02[3] = "/lands/hardwick_manor.jpg";
images_02[4] = "/lands/hardwick_manor_bathroom.jpg";
var image_02 = images_02[rand_02];
alts_02 = new Array;
alts_02[1] = "Historical pictures of Bury St Edmunds: The Fox Inn";
alts_02[2] = "Historical pictures of Bury St Edmunds: Half Moon Yard";
alts_02[3] = "Historical pictures of Bury St Edmunds: Hardwick Manor";
alts_02[4] = "Historical pictures of Bury St Edmunds: Hardwick Manor Bathroom";
var alt_02 = alts_02[rand_02];

// -----------------------------Array_03  ----------------------------
var imagenumber_03 = 4; //# of images
var randomnumber_03 = Math.random() ;
var rand_03 = Math.round( (imagenumber_03-1) * randomnumber_03) + 1 ;
images_03 = new Array;
images_03[1] = "/lands/hatter_street.jpg";
images_03[2] = "/lands/jarmans.jpg";
images_03[3] = "/lands/moyses_hall.jpg";
images_03[4] = "/lands/mustow_street.jpg";
var image_03 = images_03[rand_03];
alts_03 = new Array;
alts_03[1] = "Spanton Jarman pictures of Bury St Edmunds: Hatter Street";
alts_03[2] = "Spanton Jarman pictures of Bury St Edmunds: The Jarman Family";
alts_03[3] = "Spanton Jarman pictures of Bury St Edmunds: Moyses Hall";
alts_03[4] = "Spanton Jarman pictures of Bury St Edmunds: Mustow Street";
var alt_03 = alts_03[rand_03];


//-----------------------------Array_04 ----------------------------
var imagenumber_04 = 4; //# of images
var randomnumber_04 = Math.random() ;
var rand_04 = Math.round( (imagenumber_04-1) * randomnumber_04) + 1 ;
images_04 = new Array;
images_04[1] = "/lands/old_curiosity_shop.jpg";
images_04[2] = "/lands/prison.jpg";
 images_04[3] = "/lands/risbygate_street.jpg";
 images_04[4] = "/lands/st_andrews_castle.jpg";
 var image_04 = images_04[rand_04];
alts_04 = new Array;
alts_04[1] = "Spanton Jarman images of Bury St Edmunds: Old Curiosity Shop";
alts_04[2] = "Spanton Jarman images of Bury St Edmunds: Prison";
alts_04[3] = "Spanton Jarman images of Bury St Edmunds: Risbygate Street";
alts_04[4] = "Spanton Jarman images of Bury St Edmunds: St. Andrews Castle";
var alt_04 = alts_04[rand_04];

//-----------------------------Array_05 ----------------------------
var imagenumber_05 = 4; //# of images
var randomnumber_05 = Math.random() ;
var rand_05 = Math.round( (imagenumber_05-1) * randomnumber_05) + 1 ;
images_05 = new Array;
images_05[1] = "/lands/st_marys.jpg";
 images_05[2] = "/lands/station.jpg";
 images_05[3] = "/lands/suffolk_hotel.jpg";
 images_05[4] = "/lands/workhouse.jpg";
 var image_05 = images_05[rand_05];
alts_05 = new Array;
alts_05[1] = "Photographs of Bury St Edmunds: St Marys Church";
alts_05[2] = "Photographs of Bury St Edmunds: Railway Station";
alts_05[3] = "Photographs of Bury St Edmunds: Suffolk Hotel";
alts_05[4] = "Photographs of Bury St Edmunds: Workhouse";
var alt_05 = alts_05[rand_05];

// --------------Write the HTML ------------------------------------------------

document.write('<img src="' + image_01 + '" alt="' + alt_01 +'" title="' + alt_01 +'" border="0" width="175" height="130" style="border:7px solid #fff;" >')
document.write('<img src="' + image_02 + '" alt="' + alt_02 +'" title="' + alt_02 +'" border="0" width="175" height="130" style="border:7px solid #fff;" >')
document.write('<img src="' + image_03 + '" alt="' + alt_03 +'" title="' + alt_03 +'" border="0" width="175" height="130" style="border:7px solid #fff;" >')
document.write('<img src="' + image_04 + '" alt="' + alt_04 +'" title="' + alt_04 +'" border="0" width="175" height="130" style="border:7px solid #fff;" >')
document.write('<img src="' + image_05 + '" alt="' + alt_05 +'" title="' + alt_05 +'" border="0" width="175" height="130" style="border:7px solid #fff;" >')


