$(function(){
	$(".entryInnerNav a img, .wink").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});
});

$(document).ready(function(){
	$("#tab01 a").addClass("live");
	$("#info01").show(0);
	$("#info02").hide(0);
})

function infoClick01(){
	$("#tab01 a").addClass("live");
	$("#tab02 a").removeClass("live");
	$("#info01").show(0);
	$("#info02").hide(0);
}

function infoClick02(){
	$("#tab01 a").removeClass("live");
	$("#tab02 a").addClass("live");
	$("#info01").hide(0);
	$("#info02").show(0);
}


