<!-- Hide script from old browsers

if (document.images) {
home_on = new Image;
home_off = new Image;
dam_on = new Image;
dam_off = new Image;
sire_on = new Image;
sire_off = new Image;
puppies_on = new Image;
puppies_off = new Image;
history_on = new Image;
history_off = new Image;
dictionary_on = new Image;
dictionary_off = new Image;
contact_on = new Image;
contact_off = new Image;

home_on.src = "images/bov_home.jpg";
home_off.src = "images/b_home.jpg";
dam_on.src = "images/bov_dam.jpg";
dam_off.src = "images/b_dam.jpg";
sire_on.src = "images/bov_sire.jpg";
sire_off.src = "images/b_sire.jpg";
puppies_on.src = "images/bov_puppies.jpg";
puppies_off.src = "images/b_puppies.jpg";
history_on.src = "images/bov_history.jpg";
history_off.src = "images/b_history.jpg";
dictionary_on.src = "images/bov_dictionary.jpg";
dictionary_off.src = "images/b_dictionary.jpg";
contact_on.src = "images/bov_contact_us.jpg";
contact_off.src = "images/b_contact_us.jpg";

}
else {

home_on = "";
home_off = "";
dam_on = "";
dam_off = "";
sire_on = "";
sire_off = "";
puppies_on = "";
puppies_off = "";
history_on = "";
history_off = "";
dictionary_on = "";
dictionary_off = "";
contact_on = "";
contact_off = "";

document.getElementById('home')="";
document.getElementById('dam')="";
document.getElementById('sire')="";
document.getElementById('puppies')="";
document.getElementById('history')="";
document.getElementById('dictionary')="";
document.getElementById('contact')="";

}

function chgImg(imgField,newImg) {
	if (document.images) {
	i = document.getElementById(imgField)
	i.src= eval(newImg + ".src");
	}
}

// End hiding script from old browsers -->