/*------------------------------------------------------
	fontChanger
------------------------------------------------------*/
jQuery(document).ready(function() {
	jQuery("ul.textresizer a").textresizer({
		target: "#wrapper" 
			});
        });

/*------------------------------------------------------
	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");
	});

