	$(document).ready(function() {
	$(".cat").each(function(){
		var strLength;
		if($.browser.msie)
			strtLength = $(this).text().length -0;
		else strtLength = $(this).text().length;
		if(strtLength == 2){
			$(this).addClass("letter2");
		}
		if(strtLength == 3){
			$(this).addClass("letter3");
		}
		if(strtLength == 4){
			$(this).addClass("letter4");
		}
		if(strtLength == 5){
			$(this).addClass("letter5");
		}
		if(strtLength == 6){
			$(this).addClass("letter6");
		}
		if(strtLength == 7){
			$(this).addClass("letter7");
		}
		if(strtLength == 8){
			$(this).addClass("letter6");
		}
	  });	
	});

