$(document).ready(
	function(){
		$("#header-right div a img,#bnr-appeal a img,.bnr a img,td.btn a img,#pointcard .clearfix a img").hover(function(){
		$(this).fadeTo("fast", 0.9);
	},function(){
		$(this).fadeTo("fast", 1.0);
	});
});

$(function() {
	// set opacity to nill on page load
	$("#navi li a span").css("opacity","1");
	// on mouse over
	$("#navi li a span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 0
		}, "fast");
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 1
		}, "fast");
	});
});

