// JavaScript Document

var iNumImgs3 = 13;
var arrImg3 = new Array(iNumImgs3);
var arrTxt3 = new Array(iNumImgs3);

// Set up images
arrImg3[0] = "images/t_soilsafe.jpg";
arrImg3[1] = "images/t_dover.jpg";
arrImg3[2] = "images/t_sp.jpg";
arrImg3[3] = "images/t_rm.jpg";
arrImg3[4] = "images/t_ott.jpg";
arrImg3[5] = "images/t_ecological.jpg";
arrImg3[6] = "images/t_horizon.jpg";
arrImg3[7] = "images/t_amera.jpg";
arrImg3[8] = "images/t_synagro.jpg";
arrImg3[9] = "images/t_greenfield.jpg";
arrImg3[10] = "images/t_nutrisystem.jpg";
arrImg3[11] = "images/t_sazerac.jpg";
arrImg3[12] = "images/t_precision.jpg";

// Set up text
arrTxt3[0] = "<p class=\"small\"><strong>Client:</strong><br />SoilSafe</p><p class=\"small\"><strong>Business:</strong><br />Remediation and recycling of contaminated soil</p><p class=\"small\"><strong>Our Role:</strong><br />Advised shareholder on recapitalization and arranged the financing</p>";
arrTxt3[1] = "<p class=\"small\"><strong>Client:</strong><br />Dover Corporation</p><p class=\"small\"><strong>Business:</strong><br />Industrial manufacturing conglomerate </p><p class=\"small\"><strong>Our Role:</strong><br />Advised Dover on the divestiture of a manufacturing subsidiary, Duncan Industries</p>";
arrTxt3[2] = "<p class=\"small\"><strong>Client:</strong><br />Schiller-Pfeiffer, Inc.</p><p class=\"small\"><strong>Business:</strong><br />A leading manufacturer and marketer of power equipment for the lawn and garden marketplace</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on the acquisition of Pro-Industries</p>";
arrTxt3[3] = "<p class=\"small\"><strong>Client:</strong><br />Robbins & Myers, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Global manufacturer of highly engineered equipment and systems for the pharmaceutical, energy, and industrial markets worldwide.</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on an acquisition program</p>";
arrTxt3[4] = "<p class=\"small\"><strong>Client:</strong><br />OTT Messtechnik GmbH & Co. KG</p><p class=\"small\"><strong>Business:</strong><br />Manufacturer of hydrometric systems and instrumentation</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on the sale of the company</p>";
arrTxt3[5] = "<p class=\"small\"><strong>Client:</strong><br />Ecological Systems, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Commercial wastewater treatment and disposal</p><p class=\"small\"><strong>Our Role:</strong><br />Private equity growth financing</p>";
arrTxt3[6] = "<p class=\"small\"><strong>Client:</strong><br />Horizon Waste Services, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Collection and disposal of commercial and residential solid waste</p><p class=\"small\"><strong>Our Role:</strong><br />Private equity and debt financing to facilitate an acquisition program</p>";
arrTxt3[7] = "<p class=\"small\"><strong>Client:</strong><br />AmeraParts International, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Recycling of auto parts for use in the aftermarket</p><p class=\"small\"><strong>Our Role:</strong><br />Private equity growth financing</p>";
arrTxt3[8] = "<p class=\"small\"><strong>Client:</strong><br />Residual Technologies, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Treatment and disposal of residuals</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on the sale of the company</p>";
arrTxt3[9] = "<p class=\"small\"><strong>Client:</strong><br />Greenfield Environmental Corp.</p><p class=\"small\"><strong>Business:</strong><br />Treatment and disposal of hazardous waste</p><p class=\"small\"><strong>Our Role:</strong><br />Strategic partner private equity financing</p>";
arrTxt3[10] = "<p class=\"small\"><strong>Client:</strong><br />Nutri/System, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Food services</p><p class=\"small\"><strong>Our Role:</strong><br />Recapitalization</p>";
arrTxt3[11] = "<p class=\"small\"><strong>Client:</strong><br />Sazerac, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Beverage manufacturer and distributor </p><p class=\"small\"><strong>Our Role:</strong><br />Arranged private debt financing to facilitate acquisition program</p>";
arrTxt3[12] = "<p class=\"small\"><strong>Client:</strong><br />Precision Metal Products, Inc.</p><p class=\"small\"><strong>Business:</strong><br />A leading niche contract manufacturer of net and near-net shape forgings and precision-machined components from high performance materials</p><p class=\"small\"><strong>Our Role:</strong><br />Exclusive financial advisor to PMP on its sale to HBD</p>";


function switchEnvPic(id)
{
	if(isNaN(id) || id > iNumImgs3 || id <= 0 || !document.getElementById)
		return;
	
	var divImg = document.getElementById("tombstoneImg");
	var divTxt = document.getElementById("tombstoneTxt");
	var banner = document.getElementById("bannerImg");
	
	divImg.src = arrImg3[id-1];
	divTxt.innerHTML = arrTxt3[id-1];
	banner.src = "images2/transactions/3.jpg";
}


