/*
 * script.js - scripty
 * Autor: Radek Liska, radarfox at seznam.cz 
 */

// Expandujici boxy

$(document).ready(function(){

	// LIGHTBOX
	$('a.lightbox').lightBox();

	// SUPERSLEIGHT
	$('.png').supersleight();

	// DATEPICKER
	$('#date').DatePicker({
		format:'d.m.Y',
		date: $('#date').val(),
		current: $('#date').val(),
		starts: 1,
		position: 'r',
		onBeforeShow: function(){
			$('#date').DatePickerSetDate($('#date').val(), true);
		},
		onChange: function(formated, dates){
			$('#date').val(formated);
			$('#date').DatePickerHide();
		}
	});

});
