window.onload = function() {
var stickyNodes = document.getElementById('bluesticky');
var firstSticky = document.getElementById('initialSticky');
var confirmClone = firstSticky.cloneNode(true);
document.getElementById('bluesticky').appendChild(confirmClone);
}

function moveContent(theSticky) {
var stickyNodes = document.getElementById('bluesticky');
removeNodes(stickyNodes);
var confirmClone = theSticky.cloneNode(true);
document.getElementById('bluesticky').appendChild(confirmClone);

}

function removeNodes (cell){

if ( cell.hasChildNodes() )
{
    while ( cell.childNodes.length >= 1 )
    {
        cell.removeChild( cell.firstChild );       
    } 
}
}

