$(function() {
	if($('span.cat-more').size() == 1) {
		$('span.cat-more').hide();
		$('#category-description').append('<a href="#" class="show-more">Zobrazit více »</a>');

		$('a.show-more').click(function () {
			if($('span.cat-more').is(':hidden')) {
				$('span.cat-more').show('slow');
				$(this).text('« Zobrazit méně');
				
			} else {
				$('span.cat-more').hide('slow');
				$(this).text('Zobrazit více »');
			}
			return false;
		});
	}
	
	
	
});
