(function($){
	$("#subNavi a img,#header p a img,#footer a img").hover(function(){
		$(this).fadeTo(300, 0.5);
	},function(){
		$(this).fadeTo(200, 1);
	});
	$("#header h1 a img").hover(function(){
		$(this).fadeTo(300, 0.9);
	},function(){
		$(this).fadeTo(200, 1);
	});
	$("#main a img").hover(function(){
		$(this).fadeTo(300, 0.7);
	},function(){
		$(this).fadeTo(200, 1);
	});
	
	//イメージロールオーバー
	var image_cache = new Object();
	$("img.ovr").each(function(i) {
	var imgsrc = this.src;
	var dot = this.src.lastIndexOf('.');
	var imgsrc_on = this.src.substr(0, dot) + '_ovr' + this.src.substr(dot, 4);
	image_cache[this.src] = new Image();
	image_cache[this.src].src = imgsrc_on;
	$(this).css("opacity","1");
	$(this).hover(
	  function() { this.src = imgsrc_on; },
	  function() { this.src = imgsrc; });
	});

})(this.jQuery);
