/**
 * @author Shawn Welch
 */
function Delicious() {
	// jQuery quick vars
	var self = this,
	$search_txt = $('#directory-search-txt'),
	$search_form = $('#directory-search-form');
	
	
	// Add to search and submit
	this.add = function(term) {
		var search_txt = $search_txt.val();
		$search_txt.val(search_txt + ' ' + term);
		$search_form.submit();
	}
	
	// Start over
	this.reset = function() {
		$search_txt.val('');
		$search_form.submit();
	}
}
