$(document).ready(function() {

	$("div#abeceda > a").click(function() {
		var te = $(this).text().toLowerCase();
		$("div.sloupec > div").css({
			'border' : 'none',
			'padding-left' : '0px',
			'background' : '#ffffff'
		});
		$("div#" + te).css({
			'border' : '1px dashed #000000',
			'padding-left' : '5px',
			'width' : '300px',
			'background' : '#dddddd'
		});
	});

});