<!--Hide from non Javascript Browsers 
//javascript for writing to Browser via document.write to ID TD cell
var message=new Array();
message[0]="On Display ";
message[1]="Click to Display ";	//now redundant left for future use if required
message[2]="Already on Display. Select another item. ";
message[3]="Now on Display ";
message[4]="Click for article on their wedding ";
message[5]="&nbsp";

var caption=new Array();
caption[0]="&nbsp";
caption[1]="The Plough at the end of 1900 ";
caption[2]="The Plough in 1909";
caption[3]="The Plough in 1912";
caption[4]="The Plough in 1940's";
caption[5]="The Plough in 1950s before Drink & Drive Law";
caption[6]="The Plough in1960's after Drink & Drive Law";
caption[7]="The Plough in 1970's after a face lift";
caption[8]="The Plough run down -May 1986 &#169";
caption[9]="The Plough at Christmas 2010  &#169;";
caption[10]="Easter 2011 &#169";
//caption[11]="Plough Transport 2010   &#169;";

if(document.images){
postcard=new Array();	
for(i=0; i<11; i++){
postcard[i]=new Image();}
postcard[0]='null' ;
postcard[1]='plough_past/oldest_pcard.jpg' ;
postcard[2]='plough_past/plough_1909.jpg' ;
postcard[3]='plough_past/plough_1912.jpg' ;
postcard[4]='plough_past/post_war.jpg' ;
postcard[5]='plough_past/cars_50s.jpg' ;
postcard[6]='plough_past/sepiaplough.jpg' ;
postcard[7]='plough_past/cars_70s.jpg' ;
postcard[8]='plough_past/plough_1986.jpg' ;
postcard[9]='plough_past/snow_plough.jpg' ;
postcard[10]='plough_past/easter_monday.jpg' ;
postcard[11]='plough_past/traction.jpg' ;
}
function write_caption(ID,image_caption) { 
if (document.layers) {
layers=new Array();  
document.layers[ID].document.write(image_caption);
}
else{
 document.getElementById(ID).innerHTML = image_caption;}
}
function mouseover( s, j ){
if(j==s){                      //currently on display
write_caption('captionlayer',message[0]);}
else{                          //not on display
var notice=message[5].concat(caption[j]);
write_caption('captionlayer',notice);}
}
function mouseout(s,j ){
if(j==s){
write_caption('captionlayer',caption[j]);
}
else{
write_caption('captionlayer',caption[s]);}
}
function mouseclick( s, j ){
if(j==s){                      //currently on display
write_caption('captionlayer',message[2]);
}
else{                          //not on display
notice=new Array(message[3],caption[j]);
var notice=message[3].concat(caption[j]);
write_caption('captionlayer',notice);
frames[0].location.replace(postcard[j]);}
}
//-->
