$(document).ready(function(){
    $('a.fancybox_galerie').fancybox({
        'titlePosition':'inside'
    });

    $('a.fancybox').fancybox();



    /* Prohlídka */
    
    $('#prohlidka').hide();
    
    $('.calendar').datepicker({
        firstDay: 1,
        regional: "cs",
        showButtonPanel:true
    });
    
    $('.fancybox_edit').fancybox({
        'width':735,
        'height':450,
        'autoScale':true,
        'transitionIn':'none',
        'transitionOut':'none',
        'type':'iframe',
        'padding': '0',
        'margin': '0'
    });

    $('a.email').each(function(){
            e = this.title.replace('[A]','@');
            var mail_array = e.split('[+]');
            var mail = mail_array.join('')
            this.href = 'mailto:' + mail;
            this.title = 'email';
            $(this).text(mail);
    });
    
    
        $(".ad-image-wrapper").click(function(){
           var mImg = $(this).find("img");
           var iUrl = mImg.attr("src");
           var iUrl = iUrl.replace('01_','');
            mImg.fancybox({
                'overlayOpacity':0.6,
                'overlayColor':'#000',
                'width' : '95%',
                'height' : '95%',
                'href': iUrl
            });
	});
});

$(function() {
    $('.hoverHelp').tipsy({
        gravity: 'w',
        html: true
    });
});

$(function() {
    $("#user").dialog({
     show: 'slide',
     width: 200,
     position: ['right','top']
    });
});

