		$(function(){
			$("dd.mv").hide()
			$("body").append("<div id='glayLayer'></div><div id='overLayer'></div>");
			
			$("#glayLayer").click(function(){
				$(this).hide();
				$("#overLayer").hide();
				$("div.flashIndexContent").show();
			});
			
			$("dt").click(function(){
				$("#glayLayer").show();
				$("div.flashIndexContent").hide();
				$("#overLayer").show().html("<img src='img/common/close.png' class='close' />"+$("+dd",this).html()).css({
					marginTop:"-"+$("#overLayer").height()/2+"px" , 
					marginLeft:"-"+$("#overLayer").width()/2+"px" 
				});
				
				$("#overLayer img.close").click(function(){
					$("#glayLayer").hide();
					$("#overLayer").hide();
					$("div.flashIndexContent").show();
				});
				return false;
			});
			
			if($.browser.msie && $.browser.version<7){
				$(window).scroll(function(){
					$("#glayLayer").get(0).style.setExpression("top","$(document).scrollTop()+'px'");
					$("#overLayer").get(0).style.setExpression("top","($(document).scrollTop()+$(window).height()/2)+'px'");
				});
			}
		});

