$(document).ready(function() {
    $('h2.sideheader').click(function(){
                    $('h2.sidebar').slideUp("slow");
                    //$(this).next().slideDown("slow");
                    if ($(this).next().is(":hidden")) {
                        $(this).next().slideDown("slow");
                    } else {
                        $(this).next().slideUp('slow');
                    }
        });
		
	/* This is basic - uses default settings */
	
	/* Apply fancybox to multiple items */

        $("a.inline").fancybox({
            //'hideOnContentClick': true,
            'frameWidth': 830,
            'frameHeight': 610,
            'autoDimensions':false,
            'padding':5
        });
        //$.fancybox.resize();


	$("a.group").fancybox(
                {'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true}
                /*
                {
                'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
                }*/
        );


});

function openWindow(id, width, height) {
  newWindow = window.open("kvety-detail.php?id="+id,"newWindow","toolbar=no,menubar=no,status=no,width="+width+",height="+height+",left=50,top=50");
  newWindow.focus();
}

function checkform(){
    if ( document.getElementById('name').value=='' ||
        document.getElementById('ulica').value=='' ||
        document.getElementById('PSC').value=='' ||
        document.getElementById('mesto_obec').value=='' ||
        document.getElementById('telefon').value==''){
            alert('Vyplňte, prosím, všetky povinné údaje (označené hviezdičkou) a zadajte správnu alebo žiadnu e-mailovú adresu');
            return false;
        }
        return true;
}


