$(function(){
	/* クロスブラウザなゼブラテーブル
	$("table tr:nth-child(odd)").css("background-color", "#E8E8E8");
	 */
	 
	/* ウィンク効果 */
	$("#header h1 a img,#header h2 a img, #globalmenu ul li a img").hover(function(){
		$(this).css("opacity", "0.5");
		$(this).css("filter", "alpha(opacity=50)");
		$(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);
	});

});
