$(document).ready(function () {
	function regen(){
        $.get('/static/schnapsum/schnapsum.php',
        function success(data){
			$('#first').html(data);
		});
	}
	
	regen();
	$(".reg").click(function () {
		regen();
	});
});

function selectContent(myId)
{
	document.getElementById(myId).focus();
	document.getElementById(myId).select();
}
