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

