function popupTitle(id) {

    this.object = __get(id);
    this.object.object = this;

    this.object.onmouseover = function() {
    
        // TODO: подумать, нужно ли это...
        // this.object.show(); //
    }

    this.object.onmouseout = function() {
    
        this.object.hide();
    }

    this.show = function() {
    
        this.object.className = 'popupTitleActive';
    }
    this.hide = function() {
    
        this.object.className = 'popupTitle';
    }
} 