/**
 * JavaScript - drslavice.cz
 * @author: kesspess
 * @copyright: (c) 2009 Petr Kessler
 */

$(function () {
	$('#menu ul li a[href^="#"]').click(function () {
		var id = $(this).attr('href').split('#')[1];
		$('#' + id).slideToggle('fast');
		return false;
	});

	$('table.gal a[rel]').nyroModal({
		closeButton: '<a href="#" class="nyroModalClose" id="closeBut" title="Zav\u0159ít">Zav\u0159ít</a>'
	});

	$('a[href="#top"]').click(function (event) {
		event.preventDefault();

		$('html, body').animate({
			scrollTop: 0
		}, 600);
	});

	$('#tisk').html('<a href="javascript:window.print()"><img src="files/tisk.gif" alt="[tisk]" style="vertical-align: middle;"> tisknout stránku</a> | ');
});


// -> pripsani nuly na zacatek cisla mensiho nez 10
function prNulu(cislo)
{
	return (cislo < 10)
		? '0' + cislo
		: cislo;
}