//define images we are displaying in slideshow in main page affiliates.asp
var arrImgAff = new Array(5);
arrImgAff[0] = '../assets/Investments_Affiliates_HuntOil.jpg';
arrImgAff[1] = '../assets/Investments_Affiliates_HuntRefining.jpg';
arrImgAff[2] = '../assets/Investments_Affiliates_HuntPrivate.jpg';
arrImgAff[3] = '../assets/Investments_Affiliates_HuntMexico.jpg';
arrImgAff[4] = '../assets/Investments_Affiliates_Hoodoo.jpg';;

//preload images
var MyImg
for (var i = 0; i <arrImgAff.length; i++ ) {
	MyImg = new Image (361,370);
	MyImg.src = '../assets/' + arrImgAff[i];
}

//define descriptions forimages
var arrDescAff = new Array(5);
arrDescAff[0] = '<h2>Hunt Oil Company</h2><p>One of the world\'s leading independent energy companies, Hunt Oil has successfully conducted worldwide petroleum operations for 74 years, with exploration activities encompassing all continents except Antarctica.</p>';
arrDescAff[1] ='<h2>Hunt Refining Company</h2><p>A petroleum refining and marketing company headquartered in Tuscaloosa, Alabama, Hunt Refining Company markets gasoline and distillate fuels, supplies home heating oil and diesel fuel and is a regional supplier of both paving and industrial grade asphalt. Hunt Refining Company operates three of the five inland refineries in Alabama and Mississippi.</p>';
arrDescAff[2] ='<h2>Hunt Investment Group, L.P.</h2><p>Hunt Investment Group, L.P., is a private equity firm seeking to make growth capital investments in promising, early middle-market companies operating in a variety of industry sectors. We elect to partner with management to capitalize on unique opportunities in the marketplace and endeavor to build value through sustained and profitable growth. </p>';
arrDescAff[3] ='<h2>Hunt Mexico, Inc.</h2><p>Hunt Mexico invests in the real estate, natural gas, electric power, and private equity sectors in Mexico. Hunt Mexico has offices in Dallas, Texas and Guadalajara, Jalisco, Mexico.</p>';
arrDescAff[4] ='<h2>Hoodoo Land and Cattle Company</h2><p>Hoodoo Land and Cattle Company is a management company that oversees large-scale investments through the operation of ranching and farming.</p>';


//define image counter and set to zero and load initial slide
var imgCount = 0;


