(function($) {
	$(function() {
		var fan_model_change = function() {
			if(($('#Form_RegistrationForm_AccountType').val() == "Model") || $('#AccountType').val() == "Model")
				$('#fan-or-model').show();
			else
				$('#fan-or-model').hide();
		};
		
		if($('#fan-or-model')) {
			$('#Form_RegistrationForm_AccountType').change(fan_model_change);
			fan_model_change();
		}
		
		if($deletes = $('a[rel=delete]')) {
			$deletes.click(function() {
				if(!window.confirm('Are you sure you wish to delete this item?'))
					return false;
				$t = $(this);
				$.post(
					$t.attr('href'),
					{},
					function(data) {
						if(data == "success")
							$t.parents('.deleteable:first').fadeOut();
					}
				);
				return false;			
			});
		}
	});
})(jQuery);