// JavaScript Document

window.addEvent('domready', function(){
	if($('contactform')){
		var myCheck = new FormCheck('contactform', {
			tipsClass : 'fc-tbx',
			display : {
				scrollToFirst : true,
				showErrors : 0,
				errorsLocation : 1,
				indicateErrors : 2
			},
			alerts : {
				required : 'This field is required. Please enter a value'
			}
		})
	}
});