;
$(document).ready(function()
{
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
    
    /*$('a.image-filter').each(function(){
        $(this).css({opacity:0.5});
        $(this).mouseenter(function(){
            $(this).stop().animate({opacity: 1}, 200);
        });
        $(this).mouseleave(function(){
            $(this).stop().animate({opacity: 0.5}, 200);
        });
    });*/
    
    /*$(":submit,a").focus(function(){$(this).blur()});
    $(".search input.text").defaultValue('hledaný výraz ...');
    
    $(".partners .box").jCarouselLite({
        btnNext: ".partners .next",
        btnPrev: ".partners .prev",
        auto:3000,
        speed:600,
        visible:2
    });*/

    $('.mail').each(function(){
        text = $(this).text().replace(/ \(a\) /g, '@').replace(/ \(?(tecka|\.)\)? /g, '.');
        $(this).html('<a href="mailto:'+text+'" title="napsat email">'+text+'</a>');
    });
    
    $('.messages .close').live('click', function () {
        $(this).parent().fadeOut(1000, function() {
        });		
        return false;
	});
});

