/*------------------------------------------------------
	fontChanger
------------------------------------------------------*/
$(function(){
	$("ul.textresizer a").textresizer({
		target: "#wrapper",
		sizes: [ "82%", "100%", "120%" ]
	});
});

/*------------------------------------------------------
	popup
------------------------------------------------------*/
jQuery(function() {
	jQuery(".popup800x600").click(function(){
		window.open(this.href, "WindowName","width=800,height=600,resizable=yes,scrollbars=yes");
		return false;
	});
});

/*------------------------------------------------------
	Table.wiFؑ
------------------------------------------------------*/
$(function(){
	$("th:nth-child(odd)").addClass("odd");
	$("tr:nth-child(even)").addClass("even");
	});

