$(document).ready(function() {



$('#prodej-bytu-tab').click(function() {
    $(this).addClass('c');
    $('#pronajem-bytu-tab').removeClass('c');

    $('#prodej-bytu-shell').show();
    $('#pronajem-bytu-shell').hide();

    return false;
});



$('#pronajem-bytu-tab').click(function() {
    $(this).addClass('c');
    $('#prodej-bytu-tab').removeClass('c');

    $('#pronajem-bytu-shell').show();
    $('#prodej-bytu-shell').hide();

    return false;
});



$('#sekce-novinky-tab').click(function() {
    $(this).addClass('c');
    $('#sekce-fotogalerie-tab').removeClass('c');
    $('#sekce-video-tab').removeClass('c');

    $('#sekce-novinky-shell').show();
    $('#sekce-fotogalerie-shell').hide();
    $('#sekce-video-shell').hide();

    return false;
});



$('#sekce-fotogalerie-tab').click(function() {
    $(this).addClass('c');
    $('#sekce-novinky-tab').removeClass('c');
    $('#sekce-video-tab').removeClass('c');

    $('#sekce-fotogalerie-shell').show();
    $('#sekce-novinky-shell').hide();
    $('#sekce-video-shell').hide();

    return false;
});



$('#sekce-video-tab').click(function() {
    $(this).addClass('c');
    $('#sekce-novinky-tab').removeClass('c');
    $('#sekce-fotogalerie-tab').removeClass('c');

    $('#sekce-video-shell').show();
    $('#sekce-novinky-shell').hide();
    $('#sekce-fotogalerie-shell').hide();

    return false;
});



});

