$(document).ready(function() {
        $('.shop_thumbnail img').each(function() { // For Shop Recommendation Thumbnail
            $(this).hover(function() {
               $(this).stop().animate({ opacity: 0.75 }, 450);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });
		
		$('.promo_thumbnail img').each(function() { // For Promotion Thumbnail
            $(this).hover(function() {
               $(this).stop().animate({ opacity: 0.75 }, 450);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });
		
		$('#other_promo a img').each(function() { // Other Promotion Thumbnail
            $(this).hover(function() {
               $(this).stop().animate({ opacity: 0.75 }, 450);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });
		
		$('.item_block a img').each(function() { // Home Index Items
            $(this).hover(function() {
               $(this).stop().animate({ opacity: 0.75 }, 450);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });
		
		$('.AD_banner_images img').each(function() { // Home Index Items
            $(this).hover(function() {
               $(this).stop().animate({ opacity: 0.75 }, 450);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });

});
