var SlideShowSpeed = 3000; var CrossFadeDuration = 2; var Picture = new Array();// don't change this var Caption = new Array();// don't change this var Realtor = new Array(); var showHot = false; // don't change this Picture[1] = 'http://content-0.realistiq.net/CustomerContent-0/IQ_CB_deWetter_Hovious/sitetemplates/newcblascruces/images/DonnaThomas.gif'; Picture[2] = 'http://content-0.realistiq.net/CustomerContent-0/IQ_CB_deWetter_Hovious/sitetemplates/newcblascruces/images/EttaKaufman.gif'; Realtor[1] = "
Donna Thomas"; Realtor[2] = "
Etta Kaufman"; Caption[1] = "If you are a newly licensed Realtor who is looking for a home office that will not just show you a desk and leave you to learn on your own Coldwell Banker de Wetter Hovious it the company for you. The supportive mentor relationship that Qualifying Broker Stevie Bennett and other long time Agents in our office provide is an enriching atmosphere for not only the growth in your Real Estate business and knowledge but in personal enrichment as well"; Caption[2] = "I stay with CB because of the upscale image the the company portrays,that is important to me.
Everyone in the offices supports and gets along with one another
There is a high level of professionalism"; var how = "H"; var tss; var iss; var jss = 1; var pss = Picture.length-1; var direction="F"; var tInterval = setInterval("control()",7000); var preLoad = new Array(); for (iss = 1;iss < pss+1;iss++){ preLoad[iss] = new Image(); preLoad[iss].src = Picture[iss];} jss=0; function ResetTimer(){ clearInterval(tInterval); tInterval = setInterval("control()",7000); } function control(how){ if (how){ direction = how; } if (showHot){ if (direction=="H"){jss = jss;}; if (direction=="F"){jss = jss + 1}; if (direction == "B"){jss = jss - 1}; if (jss > (pss)) jss=1; if (jss < 1) jss = pss; if (document.all){ document.images.PictureBox.style.filter="blendTrans(duration=2)"; document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)"; document.images.PictureBox.filters.blendTrans.Apply();} document.images.PictureBox.src = preLoad[jss].src; if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss]; if (document.getElementById) document.getElementById("RealtorBox").innerHTML= Realtor[jss]; if (document.all) document.images.PictureBox.filters.blendTrans.Play(); } } control();