$(document).ready(function() {
	$('table.pricing input').click(function() {
		window.location = "/sign-up/?plan=" + $(this).attr('plan');
	});
});

