

var loadText = new Array(15);
var autName = new Array(15);



	loadText[0]="I feel like the Martindale-Hubbell customer service team is invested in this venture with me.";
	autName[0]="Robert Stephen<br />Manchester, NH";
	

	loadText[1]="Since subscribing to Lawyers.com, I have enjoyed a noticeable increase in business from clients finding me through a search off the Internet.";
	autName[1]="Julie Evans<br />Tulsa, OK";
	

	loadText[2]="I highly recommend the use of LexisNexis services for marketing a law practice.";
	autName[2]="Julie Evans<br />Tulsa, OK";
	

	loadText[3]="The only marketing method that I feel we can truly measure is our investment in Martindale-Hubbell and Lawyers.com";
	autName[3]="Kevin Anderson<br />West Palm Beach, FL";
	

	loadText[4]="I can state without hesitation that our firm attracts at least six clients per year as a direct result of our presence on Lawyers.com";
	autName[4]="Kevin Anderson<br />West Palm Beach, FL";
	

	loadText[5]="We easily achieve an ROI of 4 to 1 on our spend with Martindale-Hubbell";
	autName[5]="Kevin Anderson<br />West Palm Beach, FL";
	

	loadText[6]="I receive a steady flow of phone calls from prospective clients who have seen my Martindale-Hubbell listing on Lawyers.com";
	autName[6]="Randolph M. James, P.C.<br />Winston-Salem, NC";
	

	loadText[7]="We estimate that we have received an 8 to 1 ROI from our Martindale-Hubbell spending since the firm doors opened in 1996.";
	autName[7]="Jay Elliott<br />North Platte, NE";
	

	loadText[8]="The Eskin Law Office Web Site through LexisNexis Martindale-Hubbell has provided our office with professional, manageable and affordable Internet exposure.";
	autName[8]="Jeffery Eskin<br />Las Vegas, NV";
	

	loadText[9]="In about a month, the phone did not stop ringing. Business picked up by over 60 percent.";
	autName[9]="Stacy L. Weiss<br />New York, NY";
	

	loadText[10]="We attribute an increase in our business directly to our advertising through Martindale-Hubbell.";
	autName[10]="Kevin Hand<br />Newtown, PA";
	

	loadText[11]="Martindale-Hubbell’s Lawyers.com is the single most important exposure my practice has to clients, potential clients, and other legal professionals.";
	autName[11]="Linda A Subbloie<br />New Haven, CT";
	

	loadText[12]="As a specialized boutique firm, our placement on Lawyers.com has helped potential clients become actual clients.";
	autName[12]="Pat Malone<br />Austin, TX";
	

	loadText[13]="I have been so pleased with the results of my presence on Lawyers.com that I have discontinued my yellow pages ad.";
	autName[13]="Pat Malone<br />Austin, TX";
	

	loadText[14]="Since joining Lawyers.com a few months ago, we have already made back in business many times our investment.";
	autName[14]="Michael Seigel<br />New York, NY";
	



function quote(){	
	var obj;
	var quoteText;
	if(document.all){
		obj= document.all("quote");
		quoteText= document.all("authorName");
	} else if (document.getElementById){
		obj= document.getElementById("quote");
		quoteText= document.getElementById("authorName");
	} else if(document.layers){
		obj= document.layers("quote");
		quoteText= document.layers("authorName");
	}
	if(obj){
		var index = Math.floor(Math.random() * 15);		
		obj.innerHTML = loadText[index];
		quoteText.innerHTML = autName[index];
	}
}
//window.onload = function(){
//	quote();
//	prodFeature();
//}


 var lx_oldOnLoadCQ = window.onload;
  if (typeof window.onload != 'function') {
			window.onload = function()
			{
				 quote();
				prodFeature(); 
			}
  } else {
    window.onload = function() {
      lx_oldOnLoadCQ();
	  	 	quote();
			prodFeature();
    };
  }


