/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function tabMenuMouseOver(id)
{
    if(!($(id).hasClass("abc"))){
        $(id).removeClass('tab-menu-child').addClass('tab-menu-child-active');
    }    
}

function tabMenuMouseOut(id)
{
    if(!($(id).hasClass("abc"))){
        $(id).removeClass('tab-menu-child-active').addClass('tab-menu-child');
    }
}



