/**************************************************************************************************/
/***
/***	TERNSTYLE (TM) WORDPRESS CONTACT FORM PLUGIN DOCUMENT
/***	-----------------------------------------------------------------------
/***	Written by Matthew Praetzel. Copyright (c) 2007 Matthew Praetzel.
/***	-----------------------------------------------------------------------
/***	All Rights Reserved. Any use of these functions & scripts without written consent is prohibited.
/***
/**************************************************************************************************/

/*-----------------------
	Initialize
-----------------------*/
ternVENTS.addEvent(window,initForm,'load',false);
function initForm() {
	var f = document.getElementById('tern_wp_contact_form');
	if(f) {
		ternForm(f).validateForm('req');
	}
	alerts();
}
function alerts() {
	if(document.getElementById("alerts_cn")) {
		ternStyle(document.body).elapsor("","#000000",65,function () {
			ternVENTS.addEvent("alerts_cl",hideAlerts,"click",false);
			var d = ternStyle("alerts_cn").getDimensions();
			var w = ternStyle().getWindowSize();
			ternStyle("alerts_cn").setStyle("top",(w[1]-d[1])/2).setStyle("left",(w[0]-d[0])/2).setStyle('visibility','visible');
		});
	}
}
function hideAlerts() {
	ternStyle(document.body).hideElapsor();
	ternStyle("alerts_cn").setStyle('visibility','hidden');
}