$(function () {

	$('#specBlockInnerCyprus p a').each(function(){
		var newText = $(this).html().replace('NEW', '<span class="redColor">NEW</span>');
		//alert('новый текст: '+newText);
		newText = newText.replace('от','<span class="italicText ">от');
		//alert('добавили span: '+newText);
		newText = newText.replace('евро','евро</span>');
		//alert('закрыли span: '+newText);
		$(this).html(newText);
	})
	
	$('.blockSpec p a[href$=pdf]').addClass('pdfIcon');
	$('.blockSpec p a[href$=doc]').addClass('docIcon');
	$('.blockSpec p a[href$=xls]').addClass('xlsIcon');	
	
	$('.blockSpec p').each(function(){
		var pText = $(this).html();
		//alert(pText);
		if (pText == 'Записей не найдено.'){
			$(this).parent().addClass('hide').prev().addClass('hide').prev('h3').addClass('hide');
			//alert('fvfv');
		}
	});	
	

});
