// JavaScript Document

var iNumImgs = 13;
var arrImg = new Array(iNumImgs);
var arrTxt = new Array(iNumImgs);

// Set up images
arrImg[0] = "images/t_precision.jpg";
arrImg[1] = "images/t_beacon1.jpg";
arrImg[2] = "images/t_dentalez3.jpg";
arrImg[3] = "images/t_viasys.jpg";
arrImg[4] = "images/t_medscan.jpg";
arrImg[5] = "images/t_dentalez1.jpg";
arrImg[6] = "images/t_dentalez2.jpg";
arrImg[7] = "images/t_thc.jpg";
arrImg[8] = "images/t_cpc.jpg";
arrImg[9] = "images/t_housecall.jpg";
arrImg[10] = "images/t_laidlaw.jpg";
arrImg[11] = "images/t_beacon3.jpg";


// Set up text
arrTxt[0] = "<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>";
arrTxt[1] = "<p class=\"small\"><strong>Client:</strong><br />Beacon Hospice</p><p class=\"small\"><strong>Business:</strong><br />The leading provider of hospice services in New England</p><p class=\"small\"><strong>Our Role:</strong><br />Exclusive financial advisor to Beacon Hospice, Inc. on the acquisition</p>";
arrTxt[2] = "<p class=\"small\"><strong>Client:</strong><br />DentalEZ</p><p class=\"small\"><strong>Business:</strong><br />A leading manufacturer and marketer of dental equipment and devices</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on the divestiture of the dental x-ray business to Flow X-Ray</p>";
arrTxt[3] = "<p class=\"small\"><strong>Client:</strong><br />Viasys Healthcare</p><p class=\"small\"><strong>Business:</strong><br />Viasys is a global market leader in healthcare technology</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on the sale of MDE, a leading provider of wireless patient monitors, to Invivo Corporation (NASD: SAFE)</p>";
arrTxt[4] = "<p class=\"small\"><strong>Client:</strong><br />MedScan, Inc.</p><p class=\"small\"><strong>Business:</strong><br />Owner and operator of outpatient diagnostic imaging centers</p><p class=\"small\"><strong>Our Role:</strong><br />Advised management on the financing of a platform acquisition</p>";
arrTxt[5] = "<p class=\"small\"><strong>Client:</strong><br />DentalEZ</p><p class=\"small\"><strong>Business:</strong><br />A leading manufacturer and marketer of dental equipment and devices</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on the acquisition of RAMVAC, a leading provider of air compressor and vacuum systems that power dental operatories</p>";
arrTxt[6] = "<p class=\"small\"><strong>Client:</strong><br />DentalEZ</p><p class=\"small\"><strong>Business:</strong><br />A leading manufacturer and marketer of dental equipment and devices</p><p class=\"small\"><strong>Our Role:</strong><br />Advised on a strategic alliance with a developer of advanced medical and dental technology</p>";
arrTxt[7] = "<p class=\"small\"><strong>Client:</strong><br />THC</p><p class=\"small\"><strong>Business:</strong><br />Sub-acute care services</p><p class=\"small\"><strong>Our Role:</strong><br />Advisor to THC on sale to Vencor</p>";
arrTxt[8] = "<p class=\"small\"><strong>Client:</strong><br />Community Psychiatric Centers</p><p class=\"small\"><strong>Business:</strong><br />Leading provider of behavioral healthcare services</p><p class=\"small\"><strong>Our Role:</strong><br />Advisor on the divestiture of the psychiatric care business to Behavioral Healthcare Corp.</p>";
arrTxt[9] = "<p class=\"small\"><strong>Client:</strong><br />Housecall Medical Resources</p><p class=\"small\"><strong>Business:</strong><br />A leading provider of home healthcare services</p><p class=\"small\"><strong>Our Role:</strong><br />Advisor to management on raising equity to consummate platform acquisition</p>";
arrTxt[10] = "<p class=\"small\"><strong>Client:</strong><br />CEO of American Medical Response</p><p class=\"small\"><strong>Business:</strong><br />The leading provider of emergency medical services</p><p class=\"small\"><strong>Our Role:</strong><br />Advisor to the CEO of AMR concerning his interest in the buy-out transaction</p>";
arrTxt[11] = "<p class=\"small\"><strong>Client:</strong><br />Beacon Hospice</p><p class=\"small\"><strong>Business:</strong><br />The leading provider of hospice services in New England</p><p class=\"small\"><strong>Our Role:</strong><br />Exclusive financial advisor to Beacon Hospice, Inc. on the equity and debt financing</p>";



function switchHealthPic(id)
{
	if(isNaN(id) || id > iNumImgs || id <= 0 || !document.getElementById)
		return;
	
	var divImg = document.getElementById("tombstoneImg");
	var divTxt = document.getElementById("tombstoneTxt");
	var banner = document.getElementById("bannerImg");

	divImg.src = arrImg[id-1];
	divTxt.innerHTML = arrTxt[id-1];
	banner.src = "images2/transactions/1.jpg";
}


