Is there any method to rename a div element. I have a div with id fm_form_container,which lists a set of forms. If I click a link in a tab,for eg, My Forms, I want the name of this fm_form_container to change as tab_content_container. That is, all my forms should come inside the div, tab_content_container. 
Is there any method to rename a div,like append and addClass?
EDIT
These are the css for the div id "fm_myforms_container and tab_content_container. 
.tab_content_container
 {
    width:100%;
    background-color:#FFFFE1;
    border:1px #EEEEEE solid;
 }
 #fm_myforms_container
 {
    width:100%;
    background-color:#FFF;
    border:1px #EEEEEE solid;
 }
If I give,
$('#myForms').click(function(){
    //$("#fm_myforms_container").attr("id", "tab_content_container");
    $("#fm_myforms_container").addClass("tab_content_container");
    viewAllMyForms();  
});
the CSS for tab_content_container does not get applied.