        $(document).ready(function() {
        $(".obsah img").each(function() {
            if($(this).parent().attr('tagName') != 'a' && $(this).parent().attr('tagName') != 'A')
            {
                var txt = 'float: '+$(this).css('float');
                var o = $.create('a',
                        {'rel':'lightbox-neco',
                         'href':$(this).attr('src'),
						 'class':'mujVytvoreny'}, ['fotka']);
                $(this).css('float','none');
                var div = $.create('div',{'class':'gallery',
                         'style':'display:inline-block; margin:0; width: auto;'+txt},['neco']);
                var seznam = $.create('ul',{'class':'images','style':'padding: 0px; display:inline-block;'},['a']);
                var lis = $.create('li',{'class':'image'},['hh']);
                $(this).after($(div));
                $(div).html('');
                $(div).append($(seznam));
                $(seznam).html('');
                $(seznam).append($(lis));
                $(lis).html('');
                $(lis).append($(o));
                $(o).html('');
                $(o).append($(this));
            }
        });
		$('.mujVytvoreny').lightbox();
    });
