// JavaScript Document
			//popup show
			function showLayercontent(){
				$("#topContainer").css("z-index","-1");
				$(".layercontent").show();
			}	
			//popup close
			$(document).ready(function(){
			//fix png
			DD_belatedPNG.fix('.pngImg');
			//change imgbg
			$(".layercontent .change").click(function(){
				$(".layercontent").hide();
				$(".layercontent2").show();
				$("#topContainer").css("z-index","-1");
				});
			//改变图片
			$(".layercontent2 .page1").click(function(){
				$(".page_bg2").hide();
				$(".page_bg3").hide();
				$(".page_bg1").show();
			return false;
			});
			$(".layercontent2 .page2").click(function(){
				$(".page_bg3").hide();
				$(".page_bg1").hide();
				$(".page_bg2").show();
			return false;
			});
			$(".layercontent2 .page3").click(function(){
				$(".page_bg1").hide();
				$(".page_bg2").hide();
				$(".page_bg3").show();
			return false;
			});
			$(".layercontent .return").click(function(){
				$(".layercontent").hide();
				$("#topContainer").css("z-index","49");
				return false;
				});
			$(".layercontent2 .return").click(function(){
				$(".layercontent2").hide();
				$("#topContainer").css("z-index","49");
				return false;
				});
			$(".layercontent2 .change").click(function(){
				$(".layercontent2").hide();
				$(".layercontent").show();
				$("#topContainer").css("z-index","-1");
				return false;
				});
			});

