// Email Address Validation

function eVal(str) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(str)){
		document.getElementById('email').style.background='#E6EFC2';
		document.getElementById('email').style.border='1px solid #5FA630';
		document.getElementById('email').style.color='#264409';
	}
	else {
		document.getElementById('email').style.background='#FBE3E4';
		document.getElementById('email').style.border='1px solid #FBC2C4';
		document.getElementById('email').style.color='#8a1f11';
		return (false);
	}
}

//Scroll to Top

$(document).ready(function() { $('.backtotop').click(function(){ $('html, body').animate({scrollTop:0}, 'slow'); return false; }); });
