function editContent() {
    // Show and hide the content / editable text box
    $('#contenteditablesection').show(); 
    $('#content').hide();
    
    // resize the editable area to match the original content
    //$('#contenteditable').css("height", $('#content').height());
    
    //alert($('#content').height());
}   

function cancelEdit() {
    window.location.reload();        
}

function submitChanges() {
    
}