// JavaScript Document

function changename(anchorName,text) {

 

 switch (text) {

   case 'nav01':

   stuff = "<font-size: 12>Palo Duro Consulting is a multi-purpose veterinary practice specializing in beef feedlot consultation and pharmaceutical product evaluation. Details of our services and staff bios are only a click away using the <b>INTRODUCTION link</b> above.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"We also publish a growing library of technical manuals for industry practitioners. These are available for purchase by veterinarians, pharmaceutical companies, educational institutions and cattle industry personnel.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"A wide range of agriculture and general interest images are available for purchase and download.</font><br>";

   break;

  case 'nav02':

   stuff = "<font-size: 12>David Bechtol's <b>AgriStock Images</b> offer a wide variety of high-quality photographs for publishing, agriculture and veterinary practice communities. The extensive <b>AgriStock</b> collection covers feedyards, cattle ranching, farming, veterinary medicine, wildlife, scenery and travel in several countries around the world.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"For agencies seeking exclusive rights, there is a 'one-rate' option for right-protected images. Call for details.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"Browse the Collection by category or search by keyword. Purchase full-size, high-resolution images right online using our secure shopping cart. Just <b>click the PHOTOS link above</b> to get started.</font>";

   break;

  case 'nav03':

		stuff = "<font-size: 12>Dr. Bechtol and his colleagues have produced several publications " +

			"to assist cattle raisers and feeders in maintaining healthy herds. The <b>Beef Production Medicine 2004</b> manual, the <b>Necropsy Manual</b>, <b>Cattle Treatment Guide</b>, and the <b>Cattle Disease Guide</b> are available in convenient, durable printed form or on CD. The CDs include extensive content hyperlinks for quick, intuitive navigation and connections to online resources. Publications are also available in Spanish.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"Order the version best for you, or get both book and CD at a special package price. Additional discounts are available for quantity orders.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"<b>Click the PUBLICATIONS link above</b> to learn more and place an order using our secure online shopping cart.</font>";

   break;

    case 'nav04':

   stuff = "<font-size: 12>Palo Duro Consulting's <b>Agri&bull;Center</b> is a privately owned independent research facility near Amarillo, in the heart of cattle country. The Center specializes in performing comparative product research for the pharmaceutical and cattle feeding industries.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"In this section of our site, industry practitioners can find in-depth information about our services, our facilities and industry trends. Access to this information is restricted to industry professionals who use our convenient online form to become an Agri&bull;Center member and obtain a password.<br>" +

			"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

			"Just <b>click the AGRICENTER link</b> above to log in to the Agri&bull;Center or to become an Agri&bull;Center member.</font>";

   break;

  case 'nav05':

   stuff = "<font-size: 12>Visit Studio 88 featured on the Palo Duro Consulting website. Here you may browse artwork and purchase online. Come see the artists on Friday Walk, the first Friday of each month.  This is an open public event.  The Friday walk throughs are from 5:30 to 9:00.  The second walk through is on the third Saturday from 9:00 a.m. to 4:00 p.m.  Contact us Today if you are interested or have any questions:<br><br>Studio 88 Bechtol & Bechtol<br>3701 Plains Blvd<br>Amarillo, Texas 79102<br>mary@marybechtol.com<br><br>**Studio 88 is an affiliate of Palo Duro Consulting." +

			"";

   break;

 case 'nav06':

   stuff = "<font-size: 12>Dr. Bechtol writes an informative newsletter right here on the Palo Duro Consulting Web site to keep customers and friends informed of his activities as well as late-breaking news in bovine medicine.<br>" +

		   "<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

		   "" +

		"<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

		"";

   break;

 case 'nav07':

   stuff = "<font-size: 12>Palo Duro Consultation Research and Feedlot<br>" +

   "16851 Hope Road<br>" +

   "Canyon, Texas 79015<br>" +

   "<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

   "806 499-3304 - PDCR*F Office<br>" +

   "806 499-3392 - ARC - Office<br>" +

   "806 499-3394 fax<br>" +

   "<img src='assets/spacer.gif' width=383 height=8 border=0><br>" +

   "Click the <b>CONTACT link</b> above to view our staff directory and a map to our facility.<br><br>" +
   
   "Please contact Mary at Studio 88 by emailing her at mary@marybechtol.com";

   break;

 

 }



if (document.anchors) {

 document.anchors(anchorName).innerHTML = stuff;

 return true;

 }

}



function newImage(arg) {

	if (document.images) {

		rslt = new Image();

		rslt.src = arg;

		return rslt;

	}

}



function changeImages() {

	if (document.images && (preloadFlag == true)) {

		for (var i=0; i<changeImages.arguments.length; i+=2) {

			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];

		}

	}

}



var preloadFlag = false;

function preloadImages() {

	if (document.images) {

		nav01_over = newImage("assets/nav01-over.gif");

		nav02_over = newImage("assets/nav02-over.gif");

		nav03_over = newImage("assets/nav03-over.gif");

		nav04_over = newImage("assets/nav04-over.gif");

		nav05_over = newImage("assets/nav05-over.gif");

		nav06_over = newImage("assets/nav06-over.gif");

		nav07_over = newImage("assets/nav07-over.gif");

		preloadFlag = true;

	}

}

