// When the document loads do everything inside here ...
// http://stackoverflow.com/questions/2803532/how-do-i-put-a-clear-button-inside-my-html-text-input-box-like-the-iphone-does
$(document).ready(function(){
	$('input.deleteable').wrap('<span class="deleteicon" />').after($('<span/>').click(function() {
		$(this).prev('input').val('').focus();
	}));
});
