// ============================================================ 
// ロールオーバー
// ============================================================ 
var rollover = {
	swap:function(){
		$("img.swap").each(function(i) {
			var imgsrc = this.src;
			var dot = imgsrc.lastIndexOf(".");
			var imgsrc_on = imgsrc.substr(0, dot) + '_on' + imgsrc.substr(dot, 4);
			$("<img>").attr("src", imgsrc_on);
			
			$(this).hover(
				function() { this.src = imgsrc_on; },
				function() { this.src = imgsrc; }
			);
		});
	},
	
	bright:function(){
		$("img.bright").mouseover(function(){
			$(this).css({opacity: 0.25}).fadeTo(600, 1);
		});
	},
	
	alpha:function(){
		$("img.alpha").hover(
			function() { $(this).fadeTo(250, 0.6); },
			function() { $(this).fadeTo(250, 1); }
		);
	}
}

$(document).ready(function(){
	rollover.swap();
	rollover.bright();
});
