//<!--
var T = 16
var MT = 1
var prfx
var timeClock

function stopClock() {
    clearTimeout(timeClock);  
}

function startClock(){
	
	T = T-MT;
	timeClock = setTimeout("startClock()", 1000);
	
	switch(T){
		case 6:
			MM_swapImgRestore();
			MM_swapImage('AboutUs','',prfx + 'images/aboutusRw.gif',1);
			break;
		case 5:
			MM_swapImgRestore();
			MM_swapImage('Contacts','',prfx + 'images/contactusRw.gif',1);
			break;				
		case 4:
			MM_swapImgRestore();
			MM_swapImage('Products','',prfx + 'images/productsRw.gif',1);
			break;				
		case 3:
			MM_swapImgRestore();
			MM_swapImage('Services','',prfx + 'images/servicesRw.gif',1);
			break;				
		case 2:
			MM_swapImgRestore();
			MM_swapImage('Support','',prfx + 'images/supportRw.gif',1);
			break;				
		case 1:
			MM_swapImgRestore();
			MM_swapImage('Forum','',prfx + 'images/forumRw.gif',1);
			break;
	}
	
	if(T<1){
		MM_swapImgRestore();				
		T=16;
	}

}
//-->