tinymce.init({
setup : function(ed) {
ed.onInit.add(function(ed) {
var header = '<header>ABCD</header>',
footer = '<div>footer</div>',
content = ed.getContent();
content = header + content + footer;
ed.setContent(content);
});
}
});