$(document).ready(function(){
	$(function() { 
		$(".slide_banner a img, .banner a img, .item_img a img").hover(
			function () {
				$(this).stop().animate({opacity: 0.7}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
		$(".gnavi a img, .cart a img, .sitemap a img, .plist a img, .pagetop a img").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');}
		);
	});
});
