﻿/// <reference path="~/resources/js/jquery-1.3.2.min.js" />

$(document).ready(function() {
	$(".rememberme-check").click(function() {
		if ($(this).children(":first").is(":checked")) {
			alertUser();
		}
	});
	$(".rememberme-help").click(function() {
		alertUser();
	});
});

var alertUser = function() {
	alert("If you tick this box then you will no longer need to log in when visiting this website from this computer."
		+ "\n\nYou can disable this feature at any time by logging out."
		+ "\n\nDon’t use this option unless you are the only person who has access to this computer."
		+ "\n\nWARNING: If you decide to use this option you will be liable for the actions of anyone how uses your login to access this website.");}