$(document).ready(function()	{
	$("tr:nth-child(odd)").addClass("odd");
	$("td:first-child()").addClass("first-child");
	$("td:last-child()").addClass("last-child");
	$("table").attr("cellspacing","0");
	$("table").attr("cellpadding","0");
	$("table").attr("border","0");
	$("hr").wrap("<div class='hr'></div>");
	$("div.sectionedit a[href]").each(function(){
		$(this).attr("class", "editBtn");
		$(this).html('<img src="/theme/v4/i/editBtn.gif" alt="edit" />');
	});
	$("div[@class=sectionedit]").each(function(){
		$(this).appendTo($(this).next());
		$(this).css("display", "inline");
	});
});

function toggle(obj) {
    var elstyle = document.getElementById(obj).style;
    var text    = document.getElementById(obj + "tog");
    if (elstyle.display == 'block') {
        elstyle.display = 'none';
        text.innerHTML = "보이기↓";
    } else {
        elstyle.display = 'block';
        text.innerHTML = "숨기기↑";
    }
}
