$(function(){
    $('abbr').each(function(){
        $(this).replaceWith('<span class="abbr" rel="'+$(this).attr('title')+'">'+$(this).html()+'</span>');
    });
    $(".text_hint[value!=]")
        .each(function(){this.hint=this.value})
        .bind("focus",function(){if(this.hint==this.value){$(this).attr("value","").removeClass("text_hint")}})
        .bind("blur",function(){if(this.value==""){ $(this).attr("value",this.hint).addClass("text_hint")}})

    $('.abbr').each(function(){
        $(this).bind('mouseenter', function(){
            $('.gloss__text').css({'top': $(this).offset().top+15, 'left': $(this).offset().left+10}).html($(this).attr('rel')).show();
        }).bind('mouseout', function () {
            $('.gloss__text').hide();
        });
    });
});


