function randomImg2()
{
images = new Array(10);
			images[0] = "<img src='img/lb-acreage/1_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[1] = "<img src='img/lb-barn/1_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[2] = "<img src='img/lb-barn/2_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[3] = "<img src='img/lb-feature/A_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[4] = "<img src='img/lb-hangar/1_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[5] = "<img src='img/lb-hay/A_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[6] = "<img src='img/lb-machine/1_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[7] = "<img src='img/lb-riding/1_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[8] = "<img src='img/lb-shelter/A_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			images[9] = "<img src='img/lb-shop/1_s.jpg' alt='more galleries' style='width:175px; height:130px;' />";
			index = Math.floor(Math.random() * images.length);
			document.write(images[index]);
}

