var names = new Array(1);
names[0] = "jengibre interactive";

/**
@param string rowid the id of the row you want to make disappear
@param oject  opts  Effect options such as {duration:3}
*/
function fadeTableRow(rowid, opts){
    if(!opts){
        opts = {};
    }
    var row  = $(rowid);
    var cells = row.childNodes;
    for(i = 0; i < cells.length; i++){
        if(cells[i].tagName == 'TD'){
            new Effect.Fade(cells[i], opts);
        }
    }
    new Effect.Fade(row, opts);
}

/**
@param string rowid the id of the row you want to make appear
@param oject  opts  Effect options such as {duration:3}
*/
function appearTableRow(rowid, opts){
    if(!opts){
        opts = {};
    }
    var row  = $(rowid);
    var cells = row.childNodes;
    for(i = 0; i < cells.length; i++){
        if(cells[i].tagName == 'TD'){
            new Effect.Appear(cells[i], opts);
        }
    }
    new Effect.Appear(row, opts);
}
