function GetLawyerQuote()
{

//array for holding lawyer images
var theImages = new Array() ;

//file names of lawyers

theImages[0] = 'MikeMurphy.jpg';

theImages[1] = 'JenniferStewart.jpg';

theImages[2] = 'LarryCoats.jpg';

//theImages[3] = 

theImages[3] = 'EdwardGreen.jpg';

theImages[4] = 'FrankAbrams.jpg';

theImages[5] = 'DavidBennett.jpg';

theImages[6] = 'AnthonyBiller.jpg';

theImages[7] = 'DanHomiller.jpg';

theImages[8] = 'KathleenCavanagh.jpg';

theImages[9] = 'JohnOwen.jpg';

theImages[10] = 'StephenHerrera.jpg';

//theImages[11] = 'RebeccaCrandall.jpg';

theImages[11] = 'Davidkalish.jpg';

theImages[12] = 'MarkBilak.jpg';

theImages[13] = 'MikeMurphy.jpg';

theImages[14] = 'JustinLeonard.jpg';



//load images
var j = 0;

var p = theImages.length;

var preBuffer = new Array();

for (i = 0; i < p; i++){

   preBuffer[i] = new Image();

   preBuffer[i].src = theImages[i];

}

//pick which image at random

var whichImage = Math.round(Math.random()*(p-1));

//write out the lawyer image
document.write('<table height="500px"><tr><td valign=\"top\">');

document.write('<img src=\"/portals/0/lawyers/');
			   
document.write(theImages[whichImage]);

document.write('\" /></td><td align=\"top\">');

//Array for Quotes

var theQuotes = new Array() ;

//Quote file names
theQuotes[0] = '\"I like that our work has such a personal imprint on it.\"';

theQuotes[1] = '\"I enjoy making the client comfortable with the IP process.\"';

theQuotes[2] = '\"When our work results in a competitive advantage for a client it\'s both satisfying and rewarding.\"';

theQuotes[3] = '\"I love my work, Client interactions are always full of positive energy and excitement.\"';

//This is a place filler quote and needs to be replaced.
//theQuotes[5] = '\"I\'ve always loved figuring out how things work, I guess I still do.\"';

theQuotes[4] = '\"It\'s rewarding to serve investors and help them realize their dreams.\"';

theQuotes[5] = '\"I\'ve always loved figuring out how things work, I guess I still do.\"';

theQuotes[6] = '\"I appreciate the satisfaction of knowing our clients are well served.\"';

theQuotes[7] = '\"The services we provide are personal.  As a former client, I appreciate that.\"';

theQuotes[8] = '\"I never planned to do anything I didn\'t love for a living, I\'m glad I never settled for less.\"';

theQuotes[9] = '\"I like being able to make a difference in a client\'s business.\"';

theQuotes[10] = '\"I love what I do, in fact it\'s positively exhilarating.\"';

//theQuotes[11] = '\"I really care about our clients.  I always want to achieve the best possible results for them.\"';

theQuotes[11] = '\"I enjoy the work I do and the people and clients I work with.\"';

theQuotes[12] = '\"We help our clients protect and leverage their IP interests to their best advantage.\"';

theQuotes[13] = '\"I like that our work has such a personal imprint on it.\"';

theQuotes[14] = '\"The investment my clients have already made in their ideas inspires me to work for them with that same intensity and dedication.\"';
		  
//load Quote images
var k = 0;

var q = theQuotes.length;

var preBuffer = new Array();

for (i = 0; i < q; i++){

   preBuffer[i] = new Image();

   preBuffer[i].src = theImages[i];

}

//randomly choose which quote
//var whichQuote = Math.round(Math.random()*(q-1));

//display the quote
document.write('<h3>');
			   
document.write(theQuotes[whichImage]);

document.write('<\h3>');

document.write('</td></tr></table>');
}

