
dive = {
	show: function(elem) {
		document.getElementById(elem).style.display = 'block';
	},
	hide: function(elem) {
		document.getElementById(elem).style.display = 'none';
	}
}


$(function(){
	$("#page-wrap").wrapInner('<table cellpadding="0" cellspacing="0" border="0" valign="top" ><tr>');
	$(".post").wrap("<td>");
});
