;
$(document).ready(function()
{
	$("a.gallery").fancybox({
        'transitionIn'	:	'elastic',
        'transitionOut'	:	'elastic',
        'speedIn'		:	200, 
        'speedOut'		:	200, 
        'overlayShow'	:	true
    });

    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });

    $('.mail').each(function(){
        text = $(this).text().replace(/ \(a\) /g, '@').replace(/ \(?(tecka|\.)\)? /g, '.');
        $(this).replaceWith($('<a href="mailto:'+text+'" title="napsat email">'+text+'</a>'));
    });
    
    $("input.default-title").each(function(){
        $(this).defaultValue($(this).attr('title'));
    });
    
    $('.widget-last-implementations').cycle({
        fx:                    'fade',
        speed:                 2000, 
        timeout:               5000 
    });
});

