/*
* Generic
*/

/* Validate */
function fncRCO_Validate(element) {
	new Validation(element); 
}

/*
* Auto Hide Events
*/

// to after dom has loaded
// has to be at the end of file, otherwise any other function doesnt load
Event.observe(window, 'load', function() {
	// hide successmsg if it exists
	if($('successmsg')) {
		setTimeout("Effect.Fade('successmsg', { duration: 10.0 });", 10000);
	}
	if($('loginerrors')) {
		setTimeout("Effect.Fade('errorbox', { duration: 10.0 });", 10000);
	}

});

