
$(document).ready(function(){
	$('.text-input, .sidebar').focus(function() {
		$(this).val("").addClass("focused");
	});
	
});