
	//ROTATING WORK SAMPLE INFO
	var numPairs = 5;
	var topPics = new Array(numPairs);
	var workDesc = new Array(numPairs);

	topPics[0] = "images/content/ourwork_novell.jpg";
	workDesc[0] = "<b>Novell</b><br />When Novell needed to connect with customers about its migration tools, it turned to Ford Sherman to write its Connection's articles.";

	topPics[1] = "images/content/ourwork_medpoint.gif";
	workDesc[1] = "<b>MedPoint</b><br />Health care payers use MedPoint to analyze risk and maximize return. Ford Sherman's interactive demo helped Ingenix maximize MedPoint sales.";

	topPics[2] = "images/content/ourwork_iline.gif";
	workDesc[2] = "<b>Insight Eyeworks</b><br />See how Ford Sherman helped make Insight Eyeworks' style-conscious reading eyewear even more appealing.";

	topPics[3] = "images/content/ourwork_mcafee.jpg";
	workDesc[3] = "<b>McAfee</b><br />Learn how Ford Sherman helped McAfee tell the world about its next-generation enterprise firewall.";

	topPics[4] = "images/content/ourwork_extractable.gif";
	workDesc[4] = "<b>Extractable</b><br />This West Coast interactive powerhouse chose Ford Sherman to create content for its own site redesign.";

	function selectPair() {
  	var randIndex=Math.floor(Math.random()*numPairs);

  	var topPicEl = document.getElementById('img1');
  	topPicEl.src = topPics[randIndex];
  	var workDescEl = document.getElementById('workDesc');
  	workDescEl.innerHTML = workDesc[randIndex];

	}

	//ROTATING WORK CLIENT INFO
	var numClientPairs = 5;
	var clientPic = new Array(numClientPairs);
	var clientDesc = new Array(numClientPairs);

	clientPic[0] = "images/content/ourclients_control4.jpg";
	clientDesc[0] = "<b>Control4</b><br />Control4 solutions automate the smart home&mdash;everything from home entertainment, energy use, climate control and home security. When Control4 needed to automate the creation of its marketing content, it plugged into Ford Sherman.";

	clientPic[1] = "images/content/ourclients_mcafee.jpg";
	clientDesc[1] = "<b>McAfee</b><br />McAfee solutions simplify securing PCs, networks and smartphones against Internet threats. Ford Sherman's clear and compelling copy simplifies the process of choosing the right solution.";

	clientPic[2] = "images/content/ourclients_motorola.gif";
	clientDesc[2] = "<b>Motorola</b><br />Motorola takes pride in offering products that combine elegant engineering with incredible design. Our writers have the rare ability to convey the value of both.";

	clientPic[3] = "images/content/ourclients_altec.gif";
	clientDesc[3] = "<b>Altec Lansing</b><br />Altec Lansing makes pitch-perfect speakers and other acoustic products. Our copy helps them convey sound marketing.";

	clientPic[4] = "images/content/ourclients_igenix.gif";
	clientDesc[4] = "<b>Ingenix</b><br />Under the UnitedHealth Group umbrella, Ingenix solves healthcare problems through information and technology&mdash;a perfect match with Ford Sherman's specialties.";

	function selectClientPair() {
  	var randIndex=Math.floor(Math.random()*numClientPairs);

  	var clientPicEl = document.getElementById('clientImg');
  	clientPicEl.src = clientPic[randIndex];
  	var clientDescEl = document.getElementById('clientDesc');
  	clientDescEl.innerHTML = clientDesc[randIndex];
	
	}