$(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(){
	$("#ao").hide(0);
	$("#general").hide(0);
})

function addCSS01(){
	$("#tab1 a").addClass("live");
	$("#tab2 a").removeClass("live");
	$("#ao").show(0);
	$("#general").hide(0);
}

function addCSS02(){
	$("#tab1 a").removeClass("live");
	$("#tab2 a").addClass("live");
	$("#ao").hide(0);
	$("#general").show(0);
}
