$(document).ready(function(){
        
        // back to top
        $('.scrollPage').click(function() {
           var elementClicked = $(this).attr("href");
           var destination = $(elementClicked).offset().top;
           $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
           return false;
        });
        
              
        // rozbaleni divu s formularem
         $('#formPoradna').hide();
         $('#showForm').click(function() {
            $('#formPoradna').slideDown();
            $('#showForm').hide();
            return false;
         });
         
         $('#hideForm').click(function() {
            $('#showForm').show();
            $('#formPoradna').hide();
            return false;
         });    
});
