var cTitle = 0;

function titleTimer(){
	if(++cTitle >= titleList.length){
		cTitle = 0;
	}
	self.document.title = titleList[cTitle];
}

function dynamicTitle(titleList){
	try{
		self.document.title = titleList[0];
		self.setInterval(titleTimer,500);
	}catch(e){}
}
