
$(document).ready(function() {
	
	$('#LoginLink').click(function() {
		$(this).closest('form').submit();
		return false;
	});
	
});

