// å = \u00E5
// ä = \u00E4
// ö = \u00F6

// enable submit with enter (solves problem with first submit disabled)
$(function(){
	$('#loginform-top input').keydown(function(e){  
	  if (e.keyCode == 13) {
	  	var owe = $(this).parents('form').html();
	    $(this).parents('form').submit();
	    return false;
	  }
	});
});


