window.addEvent('domready', function() {
	$('homeemail').addEvent('blur', function() {
		if (this.get('value')=='') this.set('value', 'email address');
	});
	$('homeemail').addEvent('focus', function() {
		if (this.get('value')=='email address') this.set('value', '');
	});

	// Load Slideshow
	var mainss = new sfSlideshow($('splashimg'), [
		'/images/splash/_MG_7807.jpg',
		'/images/splash/_MG_6473.jpg',
		'/images/splash/splash0.jpg'
	], {
		autorun: true,
		crossfade: true,
		fadeDelay: 5000,
		limit: 12,
		loop: true,
		start: 0,
		duration: 900
	});
});

