/**
 * Clear Default Input Javascript
 * Dependencies: Mootools v1.2+
 * @author Kevin Dew <kev@redbullet.co.uk>
 * @copyright Copyright Kevin Dew, 2009
 */

window.addEvent('domready', function()
{
	var clearDefault = function()
	{
		this.set('value', '');
		this.removeEvent('focus', clearDefault);
	}
	
	$$('input.clearDefault').addEvent('focus', clearDefault);
});

