///////////
function initFrmContact() {

	new fValiderAlert("contactus.xml", "btnsend", {
		width: 196
	});
}

///////////Career :: Step 01
function initFrmCareerStep01() {

	new fValiderAlert("career_step01.xml", "btnStep01Next", {
		width: 249
	}); 
}
///////////Career :: Step 02
function initFrmCareerStep02() {
	new fValiderAlert("career_step02.xml", "btnStep02Next", {
		width: 249
	});
}

///////////Career :: Step 03
function initFrmCareer() {	
	new fValiderAlert("career_step01.xml", "btnCareerSubmit", {
		width: 249
	});
}

window.addEvent("load", function(e) {
	// global settings for all forms
	fSetAlertOptions({
		width: 100,
		bAlertOnBlur: false, 
		iAlertAutoHide: 3000
	});
	// create alert for "contact" forms
	initFrmContact();
	initFrmCareerStep01();
	initFrmCareerStep02();
	initFrmCareer();
	
});