window.addEvent('domready', function () {
	$$('.bookingField').each(function (item) {
		item.addEvent("focus", function () { if (this.value == this.defaultValue) this.set('value', ''); });
		item.addEvent("blur", function () { if (this.value == '') this.set('value', this.defaultValue); });
		return false;
	});
	$$('.textfield').each(function (item) {
		item.addEvent("focus", function () { if (this.value == this.defaultValue) this.set('value', ''); });
		item.addEvent("blur", function () { if (this.value == '') this.set('value', this.defaultValue); });
		return false;
	});
	runRotator();
});

function runRotator() {
	$$(".testimonialsPanel div").fade('hide');
	$$(".testimonialsPanel div:first-child").fade('show');
	var i = 0;
	var layers = $$('.testimonialsPanel div');
	delay = 3000;
	setInterval(function () {
		layers[i].fade('out');
		i = (i == layers.length - 1) ? 0 : i + 1;
		layers[i].fade('in');
	}, delay);
}

