function slide() {
                $('#slideshow').cycle({
                    fx:        efekt,
                    direction: 'up', // one of up|down|left|right  default=left
                    delay:    -2000
                    }
                );
            }

function tips() {
    $("#apartamenty_img").tooltip({
        tip:'#apartamenty_tip',
        effect: 'slide',
        position: "top center"
    });

    $("#urocza_img").tooltip({
        tip:'#urocza_tip',
        effect: 'slide',
        position: "top center"
    });

}

function galeria() {

    $("a[rel='gallery']").colorbox()
    $(".colorbox").colorbox();

}


$(document).ready(function() {
    slide();
    tips();
    galeria();
});