
// Java Document
//start of the javascript function
window.onload=function() {
//javascript for llama thumbnail images slideshow
	if ($("llama")) {
	
	$("llama").onclick=function() {
		$("placeholder").setAttribute("src","images/llama.jpg");
		$("desc").innerHTML="The Llama protects the sheep at Thistlestone Farm";
		$("placeholder").setAttribute("alt", "llama");
	}
	
	$("slide2").onclick=function() {
		$("placeholder").setAttribute("src","images/slideshow2.jpg");
		$("desc").innerHTML="Thistlestone Farm sheep";
		$("placeholder").setAttribute("alt", "dorset ");
	}
	
	$("slide3").onclick=function() {
		$("placeholder").setAttribute("src","images/slideshow3.jpg");
		$("desc").innerHTML="Overhead of the barns at Thistlestone Farm";
		$("placeholder").setAttribute("alt", "suffolk ");
	}
	
	$("slide4").onclick=function() {
		$("placeholder").setAttribute("src","images/slideshow4.jpg");
		$("desc").innerHTML="Arial view of Thistlestone Farm";
		$("placeholder").setAttribute("alt", "suffolk ");
	}
  }
}
//end of the javascript function
