//home center tout
				curTout = 1;
				isPlay = true;
				itemCount = 4;
				function toggleTout(ctr){
					if (ctr == curTout) return;
					document.getElementById('cTC' + curTout).className = 'changeItem';
					document.getElementById('centerToutCont').style.backgroundImage = 'url(/images/touts/homeTout' + ctr + '.jpg)';
					document.getElementById('cTC' + ctr).className = 'changeItem selected';
					var section = "";
					var toutHead = "";
					var toutText = "";
					switch(ctr){
					    case 1:
					        section = "construction"
					        path = "/depts/construction/"
					        toutHead = "TI Construction"
					        toutText = "Specializing in tenant improvements, retail built outs and medical facilities."
					        break;
					    case 2:
					        path = "/violations/"
					        toutHead = "TI Violations"
					        toutText = "Building Code Violations Remediation."
					        break;    
					    case 3:
					        section = "maint"
					        path = "/depts/maint/"
					        toutHead = "TI Maintenance"
					        toutText = "Specializing in repairs or upgrades in your home or business."
					        break;
					    case 4:
					        section = "windows"
					        path = "/depts/windows/"
					        toutHead = "TI Windows"
					        toutText = "Specializing in storm resistant windows, doors and shutters."
	
					}
					document.getElementById('toutBottomTextHead').innerHTML = toutHead;
				    document.getElementById('toutBottomTextMain').innerHTML = toutText;					
					document.getElementById('toutTopLnk').onclick = function(){location.href = path;} 
					if (section != "") {
						document.getElementById('dvBtnPresentation').style.display = "";
						document.getElementById('btnPresentation').href = 'javascript:onclick=popupVideo(\''+ section + '\', true)';
					}else{
						document.getElementById('dvBtnPresentation').style.display = "none";
					}
					curTout = ctr;
				}
				function startTimers() {  
					featureTimer = setInterval(changeFeature, 7000); 
				}
				function togglePlay(off) {
					if (isPlay || off){
						//document.getElementById('togglePlayAuto').innerHTML = '&#9658;';
						clearInterval(featureTimer);
						isPlay = false;
					}else{
						//document.getElementById('togglePlayAuto').innerHTML = '&#124;&#124;';
						startTimers();
						isPlay = true;
					}
				}
				function changeFeature() {
					var newFeature = (curTout == itemCount ? 1 : curTout + 1);
					toggleTout(newFeature);
				}
				startTimers();
				
				
				
				

				
