$(document).ready(function() { 
	$("#go").click(function() { 
		$("#c").fadeIn("slow");
		$("#text").show();
		$("#loading").show();
		var username = $("#input-bar").val();
		var style = $("#style").val();
		

		
		$.post("sigrequest.php", { value: username, style: style }, function(data) { 
			$("#c").html(data);
			$("#c").fadeIn("slow");
		});
		$("#c").fadeIn("slow");
						
	});
});
function ClipBoard() 
{
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}

