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

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

    $('.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);
    });
});

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

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

