var contactWin;
window.addEvent('domready', function() {
	$('contactForm').addEvent('submit', function(e) {
		new Event(e).stop();
		var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
		if (this.elements['email'].value.test(filter)) {
			this.elements['submit'].disabled = true;
			$('formTable').setStyle('display', 'none');
			$('resp').setStyle('display', 'block');
			var resp = $('resp').empty().addClass('ajax-loading');
			this.send({
				update: resp,
				onComplete: function() {
					resp.removeClass('ajax-loading');
				}
			});
		} else {alert('You did not enter a valid email address.');};
	});
});
var contactMe = function() {
	//$('floater').setStyle('visibility', 'visible');
	contactWin = new StickyWin.Modal({
		content: $('floater').setStyle('display', 'block')
	});

}
