// JavaScript Document
$('.dissappearField').each(function() {
	var default_value = this.value;
	$(this).focus(function() {
		if(this.value == default_value) {
			this.value = '';
		}
	});
	$(this).blur(function() {
		if(this.value == '') {
			this.value = default_value;
		}
	});
});

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"));

try {
var pageTracker = _gat._getTracker("UA-15356428-1");
pageTracker._trackPageview();
} catch(err) {}
