/* Author: Thomas Bullier @ Le Hub Agence
Use script.js to put any script you use to invoke plugins or third-party tools. This way, it will be cached and does not need to be added to the page load. 
*/

$(document).ready(function()
{
	var registerUI = new RegisterUI("#register", "#registerButton");
	
	// Clear input on focus
	$("input").one("focus", function(){$(this).val("");});
});
