	
	jQuery(function(){
		jQuery(".tutorial_choices").hide();
		jQuery("#cflftp_choose_tutorial_path").children().click(function(){
			cflftp_obj = "#cflftp_"+jQuery(this).attr('id');
			jQuery("#cflftp_entry_method").hide();
			jQuery(".tutorial_choices").hide();
			jQuery(cflftp_obj).show();
			jQuery("#cflftp_related_tutorial_type").attr("value",jQuery(this).attr('id'));
			return false;
		});
		jQuery("#cflftp_choose_tutorial_path").children().css('margin-right','20px');
		
		jQuery(".zip_choices").hide();
		jQuery("#cflftp_choose_zip_path").children().click(function(){
			cflftp_zip_obj = "#cflftp_"+jQuery(this).attr('id');
			jQuery("#cflftp_entry_method_zip").hide();
			jQuery(".zip_choices").hide();
			jQuery(cflftp_zip_obj).show();
			jQuery("#cflftp_related_zip_type").attr("value",jQuery(this).attr('id'));
			return false;
		});
		jQuery("#cflftp_choose_zip_path").children().css('margin-right','20px');
	});
	