function change1(){
	document.getElementById("display").innerHTML=
		'<img src="http://www.hoxieimplement.com/caseih/images/main_images/parts_bins.jpg" width="400" style="border: 1px solid black">';
	document.getElementById("info_one").innerText="At Hoxie Implement, Colby Ag Center, and Oakley Ag Center, we have three of the most fully stocked parts department in the area.";
	document.getElementById("info_two").innerText="Whether you're working on your combine, tractor, sprayer, ATV, or irrigation pivot, we carry most parts that you need.";
	document.getElementById("info_three").innerText="With trained and experienced parts people, we can help you find your parts accurately and quickly.  If we don't have what you need in stock we can order it for you.";
}
function change2(){
	document.getElementById("display").innerHTML=
		'<img src="http://www.hoxieimplement.com/caseih/images/main_images/parts_baldwin.JPG" width="400" style="border: 1px solid black">';
	document.getElementById("info_one").innerText="";
	document.getElementById("info_two").innerText="";
	document.getElementById("info_three").innerText="";
}

function hover1(){
	document.getElementById("img1").style.borderColor = "red";
	document.getElementById("img1").style.borderWidth = "2px";
}

function hover2(){
	document.getElementById("img2").style.borderColor = "red";
	document.getElementById("img2").style.borderWidth = "2px";
}

function hover_out1(){
	document.getElementById("img1").style.borderColor = "black";
	document.getElementById("img1").style.borderWidth = "1px";
}

function hover_out2(){
	document.getElementById("img2").style.borderColor = "black";
	document.getElementById("img2").style.borderWidth = "1px";
}



