
$(document).ready(function(){
	$('.topMenu').each(function(){
		
		if($(this).children('div').children('a').html().length > 16 ){
			$(this).addClass('topMenuBig');
		}
		
	});
	
});
	
	