// ***************************************************************************
//   Memory Highway Ltd. Copyright (C) 2007. All Rights Reserved  $Revision: 1.1 $                     
// ***************************************************************************

$(function(){
	$("#rememberme").click(function(){
		if (this.checked) {
			alert("By selecting 'remember me' you will stay logged into this computer until you click logout. If this is a public computer please do not use this feature.");
		}
	});
});