window.onload = (function(){try{
 
       $("#tagit").hide();

     $.fn.wait = function(time, type) {
        time = time || 1000;
        type = type || "fx";
        return this.queue(type, function() {
            var self = this;
            setTimeout(function() {
                $(self).dequeue();
            }, time);
        });
    };

 
    $("#tagi").click(
          function() { $("#tagit").show('500').wait(200000).hide('500'); }
         
     ); 
     
     

    $("#onas").click(
          function() { $("#tekst").slideToggle('200'); }

     );

}catch(e){}});

