window.addEvent('domready', function() {	$('contactForm').addEvent('submit', function(e) 	{		new Event(e).stop();				var listing = $('contactForm').addClass('ajax-loading');		this.send(		{			update: listing,			evalScripts: true,			onComplete: function() {				//var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");				//document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));				var pageTracker = _gat._getTracker("UA-211119-9");				pageTracker._trackPageview();				listing.removeClass('ajax-loading'); 							}		});	});}); 