$(document).ready
(
	function()
	{
		$("#show_rg").click(
			function()
			{
				$("#shop_rg").css('top','50px');
			}
		);

		$("#show_rd").click(
			function()
			{
				$("#shop_rd").css('top','50px');
			}
		);

		$("#show_l").click(
			function()
			{
				$("#shop_l").css('top','50px');
			}
		);

		$(".popup p").click(
			function()
			{
				$(".popup").css('top','-1000px');
			}
		);
	}
);

