jQuery(function()
{
	var myshopControll =
	{
		list : [
			{
				s  : jQuery('#myshop-switch1') ,
				t1 : jQuery('#myshop-link1')   ,
				t2 : jQuery('#myshop-flyer1')  ,
				classOn  : 'no1-on' ,
				classOff : 'no1'
			} ,
			{
				s  : jQuery('#myshop-switch2') ,
				t1 : jQuery('#myshop-link2')   ,
				t2 : jQuery('#myshop-flyer2')  ,
				classOn  : 'no2-on' ,
				classOff : 'no2'
			} ,
			{
				s  : jQuery('#myshop-switch3') ,
				t1 : jQuery('#myshop-link3')   ,
				t2 : jQuery('#myshop-flyer3')  ,
				classOn  : 'no3-on' ,
				classOff : 'no3'
			}
		],
		init : function()
		{
			for(var i = 0; i < this.list.length; i++)
			{
				this.list[i].s.click((function(j)
				{
					return function()
					{
						for(var k = 0; k < myshopControll.list.length; k++)
						{
							myshopControll.list[k].t1.css({display : 'none'});
							myshopControll.list[k].t2.css({display : 'none'});
							myshopControll.list[k].s.attr('class' , myshopControll.list[k].classOff);
						}
						myshopControll.list[j].t1.css({display : 'inline'});
						myshopControll.list[j].t2.css({display : 'inline'});
						myshopControll.list[j].s.attr('class' , myshopControll.list[j].classOn);
					}
				})(i));
			}
		}
	};
	myshopControll.init();
});
