function hovThis(el)
{
    el.onmouseout = function()
    {
        this.className = this.prClass;
        return false;
    }
    el.onmouseover = function()
    {
        this.prClass = this.className;
        this.className = this.prClass + ' hover';
        return false;
    }
}