/*************************************************************************    This code is from Visual Quickstart Guide - JavaScript (2nd Edition)    Copyright 1998 by Tom Negrino and Dori Smith 	Peachpit Pressoriginal code:var adImages = new Array("images/sponsor_deloittetouche.gif", "images/sponsor_jd.gif", "images/sponsor_hketo.jpg", "images/sponsor_mofo.gif", "images/sponsor_sonnenschein.gif", "images/sponsor_square2.gif")var thisAd = 0var imgCt = adImages.lengthfunction cycle() {	if (document.images) {		thisAd++		if (thisAd == imgCt) {			thisAd = 0		}		document.adBanner.src=adImages[thisAd]		setTimeout("cycle()", 3 * 1000)	}}*************************************************************************/var adImages1 = new Array("images/sponsor_dlapiper.gif", "images/sponsor_jd.gif", "images/sponsor_morganlewis.jpg", "images/sponsor_mofo.gif", "images/sponsor_pillsbury.gif", "images/sponsor_sonnenschein.gif", "images/sponsor_wsgr.gif", "images/sponsor_dorsey.gif", "images/sponsor_sawl.gif", "images/sponsor_svb.gif")var adImages2 = new Array("images/sponsor_deloitte.jpg", "images/sponsor_dcm.gif", "images/sponsor_carlylegroup.gif", "images/sponsor_dalian.jpg", "images/sponsor_hs.gif", "images/sponsor_maverickgroup.gif", "images/sponsor_bowne.gif", "images/sponsor_svb.gif", "images/sponsor_square2.gif", "images/sponsor_tnc.gif", "images/sponsor_wellsfargo.jpg", "images/sponsor_walden.gif")var adURL1 = new Array("dlapiper.com", "jonesday.com", "morganlewis.com", "mofo.com", "pillsburylaw.com", "sonnenschein.com", "wsgr.com", "dorsey.com", "sawl.org", "svb.com")var adURL2 = new Array("deloitte.com", "dcmvc.com", "thecarlylegroup.com", "amu-intl.cn", "heidrick.com", "themaverickgrouponline.com", "bowne.com", "svb.com", "square2.com", "nature.org", "wellsfargo.com", "waldenintl.com")var thisAd1 = 0var thisAd2 = 0var imgCt1 = adImages1.lengthvar imgCt2 = adImages2.lengthfunction cycle() {	if (document.images) {		thisAd1++		if (thisAd1 == imgCt1) {			thisAd1 = 0		}		document.adBanner1.src=adImages1[thisAd1]				thisAd2++		if (thisAd2 == imgCt2) {			thisAd2 = 0		}		document.adBanner2.src=adImages2[thisAd2]		setTimeout("cycle()", 3 * 1000)	}}function newLocation1() {		document.location.href = "http://www." + adURL1[thisAd1]	}	function newLocation2() {		document.location.href = "http://www." + adURL2[thisAd2]	}
