$(function(){

    $( ".datepicker" ).datepicker({
        showButtonPanel: true
    });

    $("a.colorbox").colorbox({
		slideshow: true,
		slideshowAuto: false,
		slideshowStart: 'spustit slideshow',
		slideshowStop: 'zastavit slideshow',
		current: '{current} z(e) {total}',
		previous: 'předchozí',
		next: 'další',
		close: 'zavřít',
		maxHeight: '100%',
		scalePhotos: true,
                arrowKey:true,
                innerWidth:800,
                innerHeight:600

    });

    // skrývání flash zpráviček
	$("div.flash").livequery(function () {
		var el = $(this);
		setTimeout(function () {
			el.animate({"opacity": 0}, 2000);
			el.slideUp();
		}, 7000);
	});
	
	$('input:first').focus();

        $("a[href^='http://']").click(function() {
            return!window.open(this.href,'_blank');
        });

        
});
