$(function(){
	showKey();
	function showKey(){
		for(i=0;i<$(".KeywordsBox span").length;i++){
			fontR = Math.random()*12+12;
			$(".KeywordsBox span:eq("+i+")").css({"font-size":""+fontR+"px"})
		}
	}
	setInterval(showKey,3000);
})
