// JavaScript Document

/*
$(function() {
	var zIndexNumber = 1000;
	$('.polozka').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
*/

