$(document).ready(function() {
	
	

$("#contentframe")
//create div id middle around text
.wrapInner("<div id='middle'><div id='content'></div></div>");
//put divs before and after #middle
$("#middle")
.before("<div id='top'></div>")
.after("<div id='bottom'></div>");
	
	
		
});
