$(document).ready(function(){
	date = new Date();
	$('.cityTime span').each(function(){
		this.startpoint = date.getTime();
	});
	$('.cityTime span').everyTime(1000, function() {
		nowdate = new Date();
		nowdate.setTime(parseInt($(this).attr('utctime')) + nowdate.getTime() - parseInt(this.startpoint));
		$(this).html((nowdate.getUTCHours().toString().length == 1 ? '0' + nowdate.getUTCHours().toString() : nowdate.getUTCHours().toString())  + ':' + (nowdate.getUTCMinutes().toString().length == 1 ? '0' + nowdate.getUTCMinutes().toString() : nowdate.getUTCMinutes().toString()));
	});

});