add = function (dbx,idx) {
     $.get('./js/ajax.php',{db: dbx, id: idx })
      };
calendar = function (url) { 
  window.location.href=url;
}


$(document).ready( function() {
$(":date").dateinput({
	format: 'yyyy/mm/dd',	// the format displayed for the user
	selectors: true,             	// whether month/year dropdowns are shown
	min: -100,                    // min selectable day (100 days backwards)
	max: 100,                    	// max selectable day (100 days onwards)
	offset: [10, 20],            	// tweak the position of the calendar
	speed: 'fast',               	// calendar reveal speed
	firstDay: 1                  	// which day starts a week. 0 = sunday, 1 = monday etc..
});
$(":range").rangeinput();
$.tools.validator.localize("cs", {
	'*'			: 'Povinná hodnota',
	':email'  	: 'Povinná hodnota',
	':number' 	: 'Povinná hodnota',
	':url' 		: 'Povinná hodnota',
	'[max]'	 	: 'Povinná hodnota',
	'[min]'		: 'Povinná hodnota',
	'[required]'	: 'Povinná hodnota'
});
$("#myform").validator({ lang: 'cs',messageClass: "formerror" }); 
$("#myform :input").tooltip({
	position: "center right",
	effect: "fade",
	tipClass: "formtip"
});
 $('a.galerie_polozka').lightBox();
  $('a.obrazek').lightBox();
  $('a.nahled').lightBox();
    $('a.nahled2').lightBox();		
 });
   
