/*
table stripe
*/
$(function(){
    $(".tblStripe tr:even").addClass("even");
});


/*Icon 透過
$(document).ready(
	function(){
	$("#globalNavigation img").hover(function(){
	   $(this).fadeTo("fast", 0.4); // マウスオーバーで透明度を60%にする
	},function(){
	   $(this).fadeTo("normal", 1.0); // マウスアウトで透明度を100%に戻す
	});
});
*/
/*Icon ウィンク*/
$(document).ready(
	function(){
	$("img.wink").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});
});
