/*
	JavaScript Document:	VirbShowcase
	Written by:			Niki Liu (netapon.com)
*/

var feedsEmail = document.getElementById('feeds-email');

feedsEmail.onfocus = function() { if (this.value == 'email address') this.value = ''; };
feedsEmail.onblur = function() { if (this.value == '') this.value = 'email address'; };