var caseImg=new Array(new Image(), new Image(), new Image())
caseImg[0].src="images/case_study_logo_petco.gif" 
caseImg[1].src="images/case_study_logo_wf.gif" 
caseImg[2].src="images/case_study_logo_tahiti.gif" 

var caseTxt = new Array()
caseTxt[0]="Learn how we helped PETCO consistently meet or exceed its business objectives, despite being outspent by rivals."
caseTxt[1]="Results: Millions of impressions and record-breaking grand openings."
caseTxt[2]="Learn how we helped increase traffic to Tahiti more than 100% over the past 10 years."

var caseLink = new Array()
caseLink[0]="cs_petco.asp"
caseLink[1]="cs_whole_foods.asp"
caseLink[2]="cs_tahiti.asp"

var whichCaseNum = Math.round(Math.random() * (caseImg.length -1));	
var whichCaseImg = caseImg[whichCaseNum].src;
var whichCaseTxt = caseTxt[whichCaseNum];
var whichCaseLink = caseLink[whichCaseNum];

//alert(whichCaseNum);
//alert(whichCaseTxt);

document.write("<a href=" + whichCaseLink + " Class=noul>");
document.write("<img src=" + whichCaseImg  + " width=85 height=68 border=0></TD></A>");
document.write("<TD width=128 class=home><br/><img src=images/spacer.gif height=1><br/>");
document.write("<a href=" + whichCaseLink + " Class=noul><img src=images/hdr_featured_case_2line.gif height=26 width=100 border=0>");
document.write("<br/><br/>" + whichCaseTxt + "</a>");
