;
$(document).ready(function()
{
	$("a.gallery").fancybox({
        'transitionIn'	:	'elastic',
        'transitionOut'	:	'elastic',
        'speedIn'		:	200, 
        'speedOut'		:	200, 
        'overlayShow'	:	true
    });

    $('.mail').each(function(){
        text = $(this).text().replace(/ \(a\) /g, '@').replace(/ \(?(tecka|\.)\)? /g, '.');
        $(this).replaceWith($('<a href="mailto:'+text+'" title="napsat email">'+text+'</a>'));
    });
});

