function swapimg(obj) {
	if(obj.src.match(/_f2.(jpg|gif|png)/)) {
		obj.src = obj.src.replace('_f2', '');
	} else {
		obj.src = obj.src.replace(/\.(jpg|gif|png)$/, "_f2.$1");
	}
}

$(document).ready(function(){
	$("#RGlNav1 .CLi2").hover(
		function(){ $("ul", this).fadeIn("fast"); $(this).addClass("CLi2ROn");},
		function(){ $("ul", this).fadeOut("fast"); $(this).removeClass("CLi2ROn");}
	);

	$("#RGlNav1 .CLi3").hover(
		function(){ $("ul", this).fadeIn("fast"); $(this).addClass("CLi3ROn");},
		function(){ $("ul", this).fadeOut("fast"); $(this).removeClass("CLi3ROn");}
	);

	//変更
	$("#RGlNav1 .CLi4").hover(
		function(){ $("ul", this).fadeIn("fast"); $(this).addClass("CLi4ROn");},
		function(){ $("ul", this).fadeOut("fast"); $(this).removeClass("CLi4ROn");}
	);
	//変更ここまで

});





