We had the following code built for us.
var txtList = new Array()
txtList[txtList.length]="RWS Building Company is a multiple recipient of the Business First Fast Fifty Award";
txtList[txtList.length]="SINCERITY:communicating with our clients with candor and respect";
txtList[txtList.length]="RELIABILITY:meeting deadlines, keeping promises and building a long-term relationship.";
j=parseInt(Math.random()*txtList.length);
j=(isNaN(j))?0:j;
document.write(txtList[j]);
It changes the phrase each time the page is refreshed. Is there a way to remove the sayings and replace them with pictures? If so, how?
var txtList = new Array()
txtList[txtList.length]="RWS Building Company is a multiple recipient of the Business First Fast Fifty Award";
txtList[txtList.length]="SINCERITY:communicating with our clients with candor and respect";
txtList[txtList.length]="RELIABILITY:meeting deadlines, keeping promises and building a long-term relationship.";
j=parseInt(Math.random()*txtList.length);
j=(isNaN(j))?0:j;
document.write(txtList[j]);
It changes the phrase each time the page is refreshed. Is there a way to remove the sayings and replace them with pictures? If so, how?