/* 
 * Created By : Pankaj
 * Creation Date : 29/12/2010
 */

function highlightMe(id){
    document.getElementById(id).className = 'item-hover';
}

function unHighlightMe(id){
    document.getElementById(id).className = 'item';
}

function showHide(myid, subid){

    var status;
    status = document.getElementById(subid).className;
    //alert(status);
    if(status == 'show'){
        document.getElementById(subid).className = 'hide';
        document.getElementById(myid).className = 'right_menu_title_hide';
    }
    else if(status == 'hide'){
        document.getElementById(subid).className = 'show';
        document.getElementById(myid).className = 'right_menu_title_show';
    }
}
function showHideSelect(myid, subid){

    var status;
    status = document.getElementById(subid).className;
    //alert(status);
    if(status == 'hide'){
        document.getElementById(subid).className = 'show';
        document.getElementById(myid).className = 'right_menu_title_hide';

    }
    
    
}
function showHide1(myid, subid){

    var status;
    status = document.getElementById(subid).className;
    //alert(status);
    if(status == 'show'){
        document.getElementById(subid).className = 'hide';
        document.getElementById(myid).className = 'section-wise-header-hide';
    }
    else if(status == 'hide'){
        document.getElementById(subid).className = 'show';
        document.getElementById(myid).className = 'section-wise-header-show';
    }
}

