$(function() {

	$("a.submit-rel-form").click(function(ev) {
		ev.preventDefault();
		if (window.confirm("Are you sure you want to DELETE this item?")) {
			$("#" + $(this).attr("rel")).submit();
		}
	});
	
	$("#form-password").keydown(function(event) {
		if ( event.keyCode == 13 ) {
			$(this).parents("form").submit();
		}
	});
	
	$("textarea.free-text-input").each(function() {
		if ( $(this).width() < 300 ) {
			$(this).css("width","300px");
		}
	});
	
});
