$(document).ready(function() {
	$('#tx-srfeuserregister-pi1-tx_sidb_contact').click(function() {
		if($(this).attr('checked')) {
			$('#registerSalesperson').show();
		} else {
			$('#registerSalesperson').hide();
		}
	});

	$('.feedbackForm .radio').click(function() {
		$('.feedbackFormContent').show();
	});

	$('#welcomeClose').click(function(){
		$('#welcome').fadeOut();
	});

	window.setTimeout(function(){ $('#welcome').show(); }, 300);
	
});