$(document).ready(function() {
	
	//Run Event Handlers
	event_handlers();
	
});

//This function sets up default event handlers on elements
function event_handlers() {
	
	//Clear Fields OnFocus
	$('.auto-clear').focus(function() {
		$(this).attr('default',$(this).val()).val('');
	}).blur(function() {
		if( $(this).val() == '' )
			$(this).val($(this).attr('default'));
	});
	
}
