Shop = {
   
		
   showByMetroId: function(id)
   {
       $('.shopitem').hide();
       $('.metro'+id).show();
   },
   
   showAll: function()
   {
   	   $('.shopitem').show();
   }
}
