$(document).ready(function(){
	
	var done;
	
	$('#submission').hide();
	$('.badge').click(function() {
		$('#submission').show();
	});
	$('.light-badge').click(function() {
		document.getElementById('best-box').checked = true;
		if (!done) {
			$('.boxtext').val("The best five minutes I ever had was...");
		}
	});
	$('.dark-badge').click(function() {
		document.getElementById('last-box').checked = true;
		if (!done) {
			$('.boxtext').val("If I had just five minutes to live, I would...");
		}
	});
	$('.boxtext').click(function() { 
		if (!done) {
			$(this).val(''); 
			done = true;
		}
	})
	
});
