$(document).ready(function(){
	$(function() { 
		$(".pagetop a, .top_detail a, #header ul a, .special a, .item_box a img, .item_imgbig a img, .taste a, .recommend a img, .contact a, .shop a, .noshi a, .member a, .delivery a img, .recruit a, .subnavi a, .ranking a img, .detail_img a img, .pr a img, .item_syousai a img, .mobile_bn a img").hover(
			function () {
				$(this).stop().animate({opacity: 0.6}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
		$(".gnavi a").hover(
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
		$(".current a").css("opacity","0");
		$(".current a").hover(
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');}
		);
	});
});
