
var yaExamples = new Array();
yaExamples[0] = ["auto repair 30909","http://yp.augusta.com/?temp_type=detail&Search=&search=auto+repair+30909&submit.x=0&submit.y=0&submit=submit"];
yaExamples[1] = ["pizza 30904","http://yp.augusta.com/?temp_type=detail&Search=&search=pizza+30904&submit.x=0&submit.y=0&submit=submit"];
yaExamples[2] = ["sofa 30907","http://yp.augusta.com/?temp_type=detail&Search=&search=sofa+30907&submit.x=0&submit.y=0&submit=submit"];

function getRandomArrayItem (arr) {
	var now = new Date();
	var seed = now.getSeconds();
	var randNum = Math.floor(Math.random(seed)*arr.length);
	return arr[randNum];
}

function drawExample () {
	var item = getRandomArrayItem (yaExamples);
	document.write('<a style="color:#2E72A6" href="'+item[1]+'">'+item[0]+'</a>');
}

drawExample();