$('document').ready(function(){
	$('#makerForm input[type=radio]').on('change', function(){
		var id = '#'+$(this).attr('name')+'Container';
		if($(id).length > 0){
			$(id).slideToggle();
		}
	});
	$('#makerForm textarea').one('click', function(){
		$(this).text('');
	});
});
