// JavaScript Document

function init() {	
    if (document.getElementById('messaging')) {
        setTimeout("opacity(100, 0, 400)", 5000);
    }
	
	if (document.forms['centerLogin']) {
	document.forms['centerLogin'].onsubmit = checkLoginForm;
	document.forms['centerRegister'].onsubmit = checkRegisterForm;
	}
    
    if (document.forms['resetPassword']) {
    document.forms['resetPassword'].onsubmit = checkResetForm;
    }	
}

window.onload = init; 
