function setTip() {

	var tipHref = new Array(6);
	var tipAlt = new Array(6);
	var tipSrc = new Array(6);
	var tipTextNode = new Array(6);
	var tipHeight = new Array(6);
	
	tipHref[0] = "http://www.termidorhome.com/";
	tipAlt[0] = "Termidor Termite Control";
	tipHeight[0] = 80;
	tipSrc[0] = "images/tips/termidor.gif";
	tipTextNode[0] = "Clark's Pest Control uses Termidor for termite control.";

	tipHref[1] = "http://www.advancetermitecontrol.com/";
	tipAlt[1] = "Advance Bait System";
	tipHeight[1] = 73;
	tipSrc[1] = "images/tips/atbslogo.gif";
	tipTextNode[1] = "Clark's Pest Control baits with Advance.";
	
	tipHref[2] = "http://www.nofireants.com/";
	tipAlt[2] = "Bayer's Top Choice Ant Extermination";
	tipHeight[2] = 92;
	tipSrc[2] = "images/tips/bayerTCNoAnts.jpg";
	tipTextNode[2] = "Stop those ants with Top Choice Fireant Control.";
	
	tipHref[3] = "http://www.columbiabuilders.com/";
	tipAlt[3] = "Home Builders Association of Greater Columbia";
	tipHeight[3] = 105;
	tipSrc[3] = "images/tips/hba_cola.gif";
	tipTextNode[3] = "Clark's is a proud member of the Home Builders Association of Greater Columbia.";

	tipHref[4] = "http://www.nobugs.com/";
	tipAlt[4] = "Premise Termite Elimination from Bayer";
	tipHeight[4] = 44;
	tipSrc[4] = "images/tips/premiseElimLogo.gif";
	tipTextNode[4] = "Bayer's Premise is used by Clark's for termite elimination.";
	
	tipHref[5] = "http://www.remcouncil.com/";
	tipAlt[5] = "Remodelers Council of Greater Columbia";
	tipHeight[5] = 105;
	tipSrc[5] = "images/tips/remodelorsOfCola.gif";
	tipTextNode[5] = "Clark's is a proud member of the Remodelers Council of Greater Columbia.";

	tipHref[6] = "http://www.tuff-n-dri.com/";
	tipAlt[6] = "Tuff-N-Dri Home Protection";
	tipHeight[6] = 77;
	tipSrc[6] = "images/tips/tuffNDri.jpg";
	tipTextNode[6] = "Tuff-N-Dri products, used by Clark's, will protect your home from moisture.";
	
	var currentTip = Math.floor(Math.random() * 7);

	var topicBoxAnchor = document.getElementById("tbAnchor");
		topicBoxAnchor.setAttribute("target","_blank");
		topicBoxAnchor.setAttribute("href",tipHref[currentTip]);
	
	var topicBoxImage = document.getElementById("tbImg");
		topicBoxImage.setAttribute("alt",tipAlt[currentTip]);
		topicBoxImage.setAttribute("src",tipSrc[currentTip]);
		topicBoxImage.setAttribute("width","92");
		topicBoxImage.setAttribute("height",tipHeight[currentTip]);
	
	var topicBoxText = document.getElementById("tbText").firstChild;
		topicBoxText.nodeValue = tipTextNode[currentTip];
	
}
