//This Script allows people to enter by using a form that asks for a UserID and Password
function pasuser(form) {
	var passwd=hex_md5(form.pass.value)
	if (form.name.value=="Colomember") { 
		if (passwd=="3467f44c2b8a62cccab407fc2b7cfa41") {              
			 $("#content").load("members_content.html");
		} else {
			alert("Invalid Password")
		}
	} else {  alert("Invalid UserID") }
}


 $(document).ready(function() {
	 $("#content").load("memonly.html");
     });

