var current_q = 1;

function show_next_q () {
	$('#feedback-form .frage-box').hide();
	$('#feedback-form #frage-'+current_q).show();
}

$(function() {
	$('#feedback-form h1').append(" von 7");
	$('#feedback-form .frage-box')
		.each(function() {
			if ($(this).attr('id') == 'frage-7')
			{
				$('<input type="submit" value="fertig" />')
					.appendTo($(this));
			}
			else
			{
				$('<input type="button" value="weiter" />')
					.click(function() {
						current_q++;
						show_next_q();
					})
					.appendTo($(this));
			}
		}).hide();
	$('#feedback-form #frage-1').show();
});
