$(document).ready(function(){

	$("div.catalog_list div.product a.name").each(function(){
		var el = $(this);
		var word = $(this).html();	
		var total_letter = $(this).html().length;		
		if (total_letter > 26) {var word_str = word.substr(0,24)
		$(el).empty().append(word_str+'...');}	
	});	
	
	$("div.products_hits div.product a.name").each(function(){
		var el = $(this);
		var word = $(this).html();	
		var total_letter = $(this).html().length;		
		if (total_letter > 26) {var word_str = word.substr(0,24)
		$(el).empty().append(word_str+'...');}	
	});		
	
	$("div.catalog_list div.product div.desc").each(function(){
		var el = $(this);
		var word = $(this).html();	
		var total_letter = $(this).html().length;		
		if (total_letter > 52) {var word_str = word.substr(0,52)
		$(el).empty().append(word_str+'...');}	
	});	

});
