/*------------------------------------------------------
	fontChanger
------------------------------------------------------*/
$(function(){
	$("ul.textresizer a").textresizer({
		target: "#content",
		sizes: [ "100%", "110%", "120%" ]
	});
});

/*------------------------------------------------------
	Table.奇数偶数背景色切替
------------------------------------------------------*/
$(function(){
	$("tr:nth-child(odd)").addClass("odd");
	$("tr:nth-child(even)").addClass("even");
	});

/*------------------------------------------------------
	lightbox 汎用
------------------------------------------------------*/
    $(function() {
        $('.lightbox-content a').lightBox();
    });
/*-------------------------------------------------
	表示非表示（ローン）
-------------------------------------------------*/
$(document).ready(function(){
	$(".toggle").click(function () {
		if ($("#toggle-content").is(":hidden")) {
		$("#toggle-content").slideDown("slow");
	} else {
		$("#toggle-content").slideUp("slow");
		}
	});
});


