
 
var SlideShowSpeed = 7000;
var Caption = new Array(); // don't change this

Caption[1] = "Are you a student who doesn't want to spend a fortune on books? Find people to lend them to you on SocialWay...";
Caption[2] = "Have old cellphones lying around? Find new users for them. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ";
Caption[3] = "Find a good home for toys your kids have outgrown. Leave for them a better planet than what you got.";
Caption[4] = "Need tools for a weekend project? Find a neighbor who has them. Save money and reduce your carbon footprint.";
Caption[5] = "You have an extra couch lying around? Find someone who needs it and save some carbon emissions.";

var tss;
var iss;
var jss = 1;
var pss = Caption.length-1;

var preLoad = new Array();

function runSlideShow(){
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}