$(document).ready(function(){
	$("#authBg").css("display", "none");
	
	$("#btn_sign").click(function(){
		$("#authBg").slideToggle("slow");
	});
	$("#btn_cancel").click(function(){
		$("#authBg").slideToggle("slow");
		return false;
	});
	
});

