function highLight() {
	$("#cloud span.highlight").css('color','#305484'); //
	var pos = Math.round( Math.random() * $("#cloud span.highlight").length );
	$("#cloud span.highlight").each( function(i) {
		if (i==pos) $(this).css('color','#fff');
	});
}

$(document).ready(function() {
	highLight();
	$(document).everyTime(3000, 'controlled', function() {
		highLight();
	});
	$(document).pngFix(); 
});