jQuery(document).ready(function($){
	
	var question = $("#tax-question").html();
	$("#tax-question").remove();
	$("#page").before(question);
	$("#tax-content .private").click(function(){
		$.get(baseDir + 'modules/blocktax/blocktax-set-tax.php', {type_of_user : "private"}, function(response){
			window.location.reload();
		});
	});
	
	$("#tax-content .company").click(function(){
		$.get(baseDir + 'modules/blocktax/blocktax-set-tax.php', {type_of_user : "company"}, function(response){
			window.location.reload();
		});
	});
	
	
});
