// JavaScript Document
$(document).ready(function(){
	popupMod2();						 
	$(".smaps").click(function(){
	showPupop2();
	});					
	$(".shadow").click(function(){
	hidePupop2();
	});				
	$(".popup_smaps img").click(function(){
	hidePupop2();
	});
});
function showPupop2(){
	var PageSize=getPageSize();
	var pageheight=PageSize[1];
	$(".shadow").css('height',pageheight);
	$(".shadow").show();
	$(".popup_smaps").show();
	$(".popup_smaps").animate({top:"50%"}, 1000);
}
function hidePupop2(){
	$(".shadow").hide();
	$(".popup_smaps").hide();
	popupMod();
}
function  popupMod2(){
	$(".popup_smaps").css({top:"-1000px"});
}