;
$(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>'));
    });
    
    $('.gallery-strip ul').jcarousel({
        initCallback: function(carousel){
            jQuery('.gallery-strip .next').bind('click', function() {
                carousel.next();
                return false;
            });

            jQuery('.gallery-strip .prev').bind('click', function() {
                carousel.prev();
                return false;
            });
        },
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
});

