function backlightOn(what) {
  what.style.backgroundColor = "#bcd";
  return true;
}

function backlightOff(what) {
  what.style.backgroundColor = "#fefefe";
  return true;
}

function onLoadFunction() {
	$('#pridatPrispevekD').show();
	$('#pridatPrispevek').hide();
	$('#pridatPrispevekD').html("<a onclick='showAdd()' style='text-decoration: underline; color: #00f; cursor: pointer; cursor: hand'>přidat příspěvek</a>");
}

function showAdd() {
	$('#pridatPrispevekD').hide();
	$('#pridatPrispevek').show();

}

function reloadPocasi() {
	var height = $('#pocasi').contents().find('html').height();
	var iframeHeight = $('#pocasi').height();
	if (height > iframeHeight) {
		$('#pocasi').height(height + 10);
	} 

}


$(document).ready(function() {
//	reloadPocasi();
});


