// JavaScript Document
$(document).ready(function(){
	popupMod();						 
	$(".register").click(function(){
	showPupop()
	});					 
	$(".register_2").click(function(){
	showPupop()
	});
	$(".shadow").click(function(){
	hidePupop()
	});
});
function showPupop(){
	$(".shadow").toggle();
	$(".popup").toggle();
	$(".popup").animate({top:0}, 1000);
}
function hidePupop(){
	$(".shadow").toggle();
	$(".popup").toggle();
	popupMod();
}
function  popupMod(){
	$(".popup").css({top:"-1000px"})
}
