// Task Timer plugin
jQuery.tasktimer = function(options) {
	
	this.settings = jQuery.extend({
	  name:   "", 
	  start:  "0", 
	  end:    "0",
	  paused: "1",
	  accum: "0"
	}, options);

	
	return this;
}
