Base.modules.Inbox = {
	init: function () {
		this.hijaxForms();
	}, 

	hijaxForms: function () {
		$('#inbox select').change(function () {
			$(this).parents('form').submit();
		});

		$('#inbox table form').submit(function () {
			return confirm('Är du säker?');
		});
	}
};

