$(document).ready(function() {					
	
	$("#loginbox").click(function () {
		$("#popup").fadeIn("medium");
	 });
	 
	 $(".popup_close").click(function () {
		$("#popup").fadeOut("medium");
	 });
	 
	 $("#testgen_link_show").click(function() {
		$("#testgen_moretext").show();
		$("#testgen_link_show").hide();
		$("#testgen_link_hide").show();
	});
	 
	 $("#testgen_link_hide").click(function() {
		$("#testgen_moretext").hide();
		$("#testgen_link_show").show();
		$("#testgen_link_hide").hide();
	});
	 
 });