$(document).ready(function(){
   $('.menu-concept span').hover(function(){     
   $('.menu-concept img').stop().animate({'opacity' : '0'}, 500);     
   }, function(){$('.menu-concept img').stop().animate({'opacity' : '1'}, 500);});     
   $('.menu-concept img').hover(function(){     
   $(this).stop().animate({'opacity' : '0'}, 500);     
   }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});     

   $('.menu-shop span').hover(function(){     
   $('.menu-shop img').stop().animate({'opacity' : '0'}, 500);     
   }, function(){$('.menu-shop img').stop().animate({'opacity' : '1'}, 500);});     
   $('.menu-shop img').hover(function(){     
   $(this).stop().animate({'opacity' : '0'}, 500);     
   }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});     

   $('.menu-cafe span').hover(function(){     
   $('.menu-cafe img').stop().animate({'opacity' : '0'}, 500);     
   }, function(){$('.menu-cafe img').stop().animate({'opacity' : '1'}, 500);});     
   $('.menu-cafe img').hover(function(){     
   $(this).stop().animate({'opacity' : '0'}, 500);     
   }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});     

   $('.menu-collection span').hover(function(){     
   $('.menu-collection img').stop().animate({'opacity' : '0'}, 500);     
   }, function(){$('.menu-collection img').stop().animate({'opacity' : '1'}, 500);});     
   $('.menu-collection img').hover(function(){     
   $(this).stop().animate({'opacity' : '0'}, 500);     
   }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});     

   $('.menu-blog span').hover(function(){     
   $('.menu-blog img').stop().animate({'opacity' : '0'}, 500);     
   }, function(){$('.menu-blog img').stop().animate({'opacity' : '1'}, 500);});     
   $('.menu-blog img').hover(function(){     
   $(this).stop().animate({'opacity' : '0'}, 500);     
   }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});     
});


