/* MENU SLIDER: */
$(document).ready(function(){
    
    //When mouse rolls over
    $("ul.flagMenu").mouseover(function(){
        $(this).stop().animate({height:'110px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $("ul.flagMenu").mouseout(function(){
        $(this).stop().animate({height:'24px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

});

/* form submit */
function submitform() {document.forms["otazky"].submit();}
