<!--
	gSlideshowIntervalPicOdd = 14;
	gSlideshowIntervalPicEven = 4;
	gSlideshowNotices = 8;
	
	gNumberOfImagesC = 8;
	gNumberOfImagesC2 = 3;	

	gImagesC = new Array;
	gImagesC[0] = new Array ("images/clients/client_dunnhumby.gif",gSlideshowIntervalPicEven,"relationships3.html#dunnhumby","PCMS is the Trusted IT Advisor for Dunnhumby");
	gImagesC[1] = new Array ("images/clients/client_dunnhumby_txt.gif",gSlideshowIntervalPicOdd,"relationships3.html#dunnhumby","PCMS is the Trusted IT Advisor for Dunnhumby");
	gImagesC[2] = new Array ("images/clients/client_talberthouse.gif",gSlideshowIntervalPicEven,"relationships3.html#talbert","PCMS is the Trusted IT Advisor for Talbert House");
	gImagesC[3] = new Array ("images/clients/client_talberthouse_txt.gif",gSlideshowIntervalPicOdd,"relationships3.html#talbert","PCMS is the Trusted IT Advisor for Talbert House");
	gImagesC[4] = new Array ("images/clients/client_shepherd.gif",gSlideshowIntervalPicEven, "relationships3.html#shepherd","PCMS is the Trusted IT Advisor for Shepherd");
	gImagesC[5] = new Array ("images/clients/client_shepherd_txt.gif",gSlideshowIntervalPicOdd,"relationships3.html#shepherd","PCMS is the Trusted IT Advisor for Shepherd");
	gImagesC[6] = new Array ("images/clients/client_meriden.gif",gSlideshowIntervalPicEven,"relationships3.html#meriden","PCMS is the Trusted IT Advisor for Meriden Bioscience");
	gImagesC[7] = new Array ("images/clients/client_meriden_txt.gif",gSlideshowIntervalPicOdd,"relationships3.html#meriden","PCMS is the Trusted IT Advisor for Meriden Bioscience");

	gImagesC2 = new Array;
	
	gImagesC2[0] = new Array ("images/clients/pcms_MSPmentor100.gif", gSlideshowNotices, "http://www.mspmentor.net/top-100-msps/","PCMS named to MSPmentor100", "_blank");	
	gImagesC2[1] = new Array ("images/clients/symantec_security.gif", gSlideshowNotices, "security.html", "Symantec Security Alerts","_self");
	gImagesC2[2] = new Array ("images/clients/partner_of_the_year.gif", gSlideshowNotices, "images/microsoft_partner_of_the_year.jpg","IT Advisor Named Microsoft Partner of the Year - Licensing Sales and Marketing", "_self");

	function canManipulateImagesC() {
    	if (document.images){
			return true;
		}else{
			return false;
		}
	}
	
	
	function loadSlideC(imageURLC, linkURLC, imageTitleC) {
		if (gImageCapableBrowserC) {
			document.slide.src = imageURLC;
			document.slide.title = imageTitleC;
			document.getElementById('slidelink').href = linkURLC;
			return false;
	    }else{
	       	return true;
		}
	}	

	function loadSlideC2(imageURLC2, linkURLC2, imageTitleC2, imageTargetC2) {
		if (gImageCapableBrowserC) {
	    		document.slide2.src = imageURLC2;
			document.slide2.title = imageTitleC2;			
			document.getElementById('slidelink2').href = linkURLC2;	
			document.getElementById('slidelink2').target = imageTargetC2;
	    	return false;
	    }else{
	       	return true;
	   	}
	}		
	
	function nextSlideC(gCurrentImageXC) {
    	gCurrentImageC = (gCurrentImageC + 1) % gNumberOfImagesC;
    	loadSlideC( (gImagesC[gCurrentImageC][0]),(gImagesC[gCurrentImageC][2]),(gImagesC[gCurrentImageC][3]) );
	}

	function nextSlideC2(gCurrentImageXC2) {
    	gCurrentImageC2 = (gCurrentImageC2 + 1) % gNumberOfImagesC2;
		loadSlideC2( (gImagesC2[gCurrentImageC2][0]),(gImagesC2[gCurrentImageC2][2]),(gImagesC2[gCurrentImageC2][3]),(gImagesC2[gCurrentImageC2][4]) );
	}	
	
	function nextIntervalC() {
    	counttestC = counttestC +1;
		intervalValueC = gImagesC[gCurrentImageC][1];
    	if(counttestC == intervalValueC){
        	nextSlideC();
        	counttestC=0;
    	}
	}
	
	function nextIntervalC2() {
    	counttestC2 = counttestC2 +1;
    	intervalValueC2 = gImagesC2[gCurrentImageC2][1];
    	if(counttestC2 == intervalValueC2){
       		nextSlideC2();
			counttestC2=0;
    	}
	}	

	gImageCapableBrowserC = canManipulateImagesC();
	gCurrentImageC = 0;
	gCurrentImageC2 = 0;	
	counttestC =0;
	counttestC2 =0;	
	setInterval("nextIntervalC()",500);
	setInterval("nextIntervalC2()",500);	
// -->