
var services = new Array();
services[1] = {name:"Accounting Firms",
					description:"Our lawyers have tried and won major cases on behalf of accounting firms."};
services[2] = {name:"Audit and Special Committees",
					description:"We develop the relevant facts and work closely with the company's outside auditors to minimize the impact of restatements."};
services[3] = {name:"Bonds and Public Finance",
					description:"We have served numerous investment banks, financial advisors, states and municipalities by providing disclosure, tax, regulatory and litigation advice."};
services[4] = {name:"Derivative Actions",
					description:"We have extensive experience with both &quot;tag-along&quot; and free-standing breach of fiduciary duty claims."};
services[5] = {name:"Individual Directors or Officers",
					description:"We have defended scores of individuals affiliated with premier public companies and financial institutions."};
services[6] = {name:"Internal Investigations",
					description:"Orrick's team of experienced lawyers regularly handles a broad spectrum of internal investigations, including those regarding stock options backdating."};
services[7] = {name:"Investment Banks",
					description:"We have represented many of the world's leading investment banks and broker-dealers in litigation and arbitration."};																									
services[8] = {name:"M&A Litigation",
					description:"Our litigators have handled cases covering virtually every facet of merger transactions."};	
services[9] = {name:"SEC Investigations",
					description:"We interact with the staffs of the SEC, SROs and state regulatory authorities on a regular basis. In fact, some of our lawyers are former staff members and federal prosecutors."};	
services[10] = {name:"Securities Class Actions",
					description:"Orrick's Securities Litigation Group is one of a very few practices in the United States whose lawyers have actually taken securities class actions to trial and won."};	
services[11] = {name:"SRO Proceedings",
					description:"We have represented numerous institutions and individuals in FINRA and other self-regulatory organization (SRO)proceedings. "};	
services[12] = {name:"White Collar Defense",
					description:"Ten members of our White Collar Criminal Defense and Corporate Investigations Group are former federal prosecutors."};	

				
var ourlawyers = new Array();
ourlawyers[1] = {name:"William F. Alderman",
					description:" is  one of three Orrick partners on the trial team who obtained an acquittal of the  former CFO of McKesson HBOC in a criminal securities fraud."};
ourlawyers[2] = {name:"Reece Bader",
					description:" was named one of the top securities litigators in California by <em>The Daily Journal</em>."};
ourlawyers[3] = {name:"James E. Burns Jr.",
					description:" was trial counsel in  the <em>Everex</em> securities class  action trials, two of only six securities class actions tried to verdict in the  last decade and one of <em>The National  Law Journal</em>'s &quot;Defense Verdicts of the Year.&quot;"};
ourlawyers[4] = {name:"Russell D. Duncan",
					description:" is a former SEC Enforcement trial counsel and former Assistant U.S. Attorney."};
ourlawyers[5] = {name:"Penelope A. Graboys Blair",
					description:" was a member of the <em>Everex</em> trial team and has run numerous stock option backdating investigations."};
ourlawyers[6] = {name:"Kenneth Herzinger",
					description:" is a former SEC Enforcement lawyer and leads the group's efforts to develop more cost-efficient document review methods."};
ourlawyers[7] = {name:"James N. Kramer",
					description:" was recently recognized as a top securities litigator in <em>Benchmark: Litigation</em>, published by EuroMoney Institutional Investor LLC."};																									
ourlawyers[8] = {name:"James A. Meyers",
					description:" was the SEC's lead trial counsel in a groundbreaking set of actions against 12 Wall Street investment banking firms and two individuals."};	
ourlawyers[9] = {name:"Susan D. Resley",
					description:" is a former Securities and Exchange Commission Enforcement lawyer who regularly represents companies and individuals before the SEC."};	
ourlawyers[10] = {name:"Michael D. Torpey",
					description:" leads Orrick's Securities Litigation practice and was recognized one of the top securities litigators in California by <em>The Daily Journal</em>."};	
ourlawyers[11] = {name:"Michael C. Tu",
					description:" is among the few lawyers in the country who have successfully defended a securities class action trial."};	
ourlawyers[12] = {name:"Daniel J. Tyukody",
					description:" was named one of the top securities litigators in California by <em>The Daily Journal</em>, and one of the leading litigators in the U.S. by <em>Lawdragon</em>."};	
ourlawyers[13] = {name:"Robert P. Varian",
					description:" served as trial counsel in the Everex securities class action trials, recognized as one of <em>The National Law Journal</em>'s &quot;Defense Verdicts of the Year.&quot;"};	
ourlawyers[14] = {name:"Steven J. Fink",
					description:" has extensive experience in private securities lawsuits and related civil disputes including accountants' liability, private equity disputes and post-closing purchase price adjustment cases."};	
ourlawyers[15] = {name:"Michael C. Hefter",
					description:" was recognized as one of the &#34;Top 40 under 40&#34; lawyers in the United States by the editors of <em>The National Law Journal</em>."};	
ourlawyers[16] = {name:"George E. Greer",
					description:" is recognized as one of the leading litigators in the Seattle area by <em>Chambers USA</em>."};	
ourlawyers[17] = {name:"Daniel J. Dunne",
					description:" has won complete defense verdicts in accountants' liability and federal securities trials."};	
ourlawyers[18] = {name:"Lori Lynn Phillips",
					description:" is the co-author of &#34;Privilege Considerations in Internal Investigations,&#34; recently published in <em>Executive Counsel</em>."};
					
function getServices(num) {
	var str = "";
	var rnd;
	var i=1;
	var nums = new Array();
	
	while (i<=num) {
		rnd = Math.floor(Math.random()*(services.length));
		if (rnd != 0) {
			var exists = false;
			for (var j=0; j<nums.length; j++) {
				if (rnd == nums[j]) {
					exists = true;
					break;
				}
			}
			if (exists == false) {
				nums.push(rnd);
				i++;
			}
		}		
	}
	
	for (var k=0; k<nums.length; k++) {
		str += '<div class="item"><a href="services.asp?c=item' + nums[k] + '#contentbox" class="link">';
		str += services[nums[k]].name;
		str += '</a><p>' + services[nums[k]].description;
		str += '</p></div><img src="/img/spacer.gif" height="15">';
	}
	
	document.write(str);
}

function getOurlawyers(num) {
	var str = "";
	var rnd;
	var i=1;
	var nums = new Array();
	
	while (i<=num) {
		rnd = Math.floor(Math.random()*(ourlawyers.length));
		if (rnd != 0) {
			var exists = false;
			for (var j=0; j<nums.length; j++) {
				if (rnd == nums[j]) {
					exists = true;
					break;
				}
			}
			if (exists == false) {
				nums.push(rnd);
				i++;
			}
		}		
	}
	
	for (var k=0; k<nums.length; k++) {
		str += '<div class="item"><p><a href="lawyers.asp?c=item' + nums[k] + '#contentbox">';
		str += ourlawyers[nums[k]].name;
		str += '</a>' + ourlawyers[nums[k]].description;
		str += '</p></div><img src="/img/spacer.gif" height="15">';
	}
	
	document.write(str);
}