jQuery.noConflict();

(function($){$(function(){//BEGIN jQuery.ready()
	
	
	/*** imgover ***
	■引数
	.imgover({
		exclude: "imgactive",
		postfix: "o",
		aPostfix: "", //指定なしならpostfixと同じ
		isSelf: false,
		isSelfOver: false
	});
	*/
	//$(".imgover").imgover();
	$(".sNav").imgover()
		.find(".imgactive")
			.each(function(){
				$this = $(this);
				var src = $this.attr("src");
				var ftype = src.substring(src.lastIndexOf('.'), src.length);
				$this.attr("src", src.replace(ftype, "_o" + ftype));
			});
			
	
	
	/*** 画像切替 ***
	■引数
	.chimg({
		postfix: "o",
		targetAttr: "chimg"
	});
	*/
	//$(".chimg").chimg();
	
	
	/*** tableColor ***
	■引数
	.alternate({
		evenClass: "even"
		oddClass: "odd",
		onlyTbody: true
	});
	*/
	//$(".coloredRow").alternate();
	
	
	
	
});})(jQuery);//END jQuery.ready()


/*** other func ***/




