function form(element)
{

	var numid = /item-([0-9]+)/i.exec(element.id);
	numid = numid[1];

	var texy = $('div#texy-' + numid).innerHTML;

	var form = $.create(
		'form', {
			'method' : 'POST',
			'action': '/tlacharna.html'
		}
	);

	var textarea = $.create(
		'textarea', {
			'cols' : 40,
			'rows' : 2,
			'name' : 'text',
			'class' : 'tlacharna'
		},
		[texy]
	);

	var submit = $.create(
		'input', {
			'type' : 'submit',
			'name' : 'edit',
			'value': 'Změnit'
		}
	);

	var cancel = $.create(
		'input', {
			'type' : 'button',
			'value': 'Zrušit'
		}
	);



	var id = $.create(
		'input', {
			'type' : 'hidden',
			'name' : 'post_id',
			'value': numid
		}
	);


	$(form).append(textarea);
	$(form).append(submit);
	$(form).append(cancel);

	$(form).append(id);

	$(element).children().hide();

	$(textarea).autogrow();
	$(element).append(form);
	element.onclick = null;
}

$(document).ready(function () {

	$('.kontakt-vasek').colorbox({width: '40%', inline: true, href: '#kontakt-vasek'});
	$('.kontakt-henry').colorbox({width: '40%', inline: true, href: '#kontakt-henry'});
	$('.kontakt-matej').colorbox({width: '40%', inline: true, href: '#kontakt-matej'});
	$('.kontakt-ben').colorbox({width: '40%', inline: true, href: '#kontakt-ben'});
	$('.kontakt-ondra').colorbox({width: '40%', inline: true, href: '#kontakt-ondra'});
	$('.kontakt-vita').colorbox({width: '40%', inline: true, href: '#kontakt-vita'});
	$('.kontakt-veru').colorbox({width: '40%', inline: true, href: '#kontakt-veru'});
	$('.kontakt-zenon').colorbox({width: '40%', inline: true, href: '#kontakt-zenon'});
	$('.kontakt-kaci').colorbox({width: '40%', inline: true, href: '#kontakt-kaci'});
	$('.kontakt-kuba').colorbox({width: '40%', inline: true, href: '#kontakt-kuba'});

	$('a.close').click(function(e) {
		e.preventDefault();
		var el = $(this).parent();
		el.fadeOut('slow', function() {
			$(this).remove();
		});
	});

})
