var currentLang = $('html').attr('lang');
    
$(function(){
    $('a[rel=ext]').attr('target', '_blank');
    
    $('#header .search input').click(function() {
        if (this.value==this.title)
            this.value = '';
    }).blur(function(){
        if (this.value=='')
            this.value = this.title;
    });
    
    // Vienodo aukscio stulpeliai
    $.fn.setEqualHeight = function(options) {
        var tallestcolumn = 0;
        this.each(function() {
            currentHeight = $(this).height();
            if (currentHeight>tallestcolumn)
                tallestcolumn = currentHeight;
        });
        return this.height(tallestcolumn);
    }     
});


