$(document).ready(function()
{
  var max = true;
  $("#ubytovani_cenik").css({
        'cursor':"pointer"
  });
  $("#ubytovani_cenik").click(function(){
    if(max) {
        max = false;
        $("#ubytovani_cenik table").css({
                width: "800px",
                fontSize:"100%",
                left:"50%",
                marginLeft: "-400px",
                position : "absolute"
        });
        $("#ubytovani_cenik").css({
                height:"450px"
        });
    } else {
        $("#ubytovani_cenik table").css({ 
            width: "500px",
            fontSize:"8px",
            left:"0%",
            marginLeft: "0px",
            position:"relative"
        }, 500);
        $("#ubytovani_cenik").css({
                height:"auto"
        });
        max = true;
    }
  });
});
