$(function(){

	/* クロスブラウザなフォーカス */
	$("input[type='text']").focus(function(){
		$(this).css("background", "#ffffcc");
	});
	$("input[type='text']").blur(function(){
		$(this).css("background", "#ffffff");
	});
	/* クロスブラウザなフォーカス */
	$("textarea").focus(function(){
		$(this).css("background", "#ffffcc");
	});
	$("textarea").blur(function(){
		$(this).css("background", "#ffffff");
	});


/* ウィンク効果 */
	$("#global-nav a img, #utility-nav ul li a img, #side-b ul li a img, #magazine ul li a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});

	$("#global-nav ul li.now a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("fast", 0.7);
	});


});

