jQuery.fn.easyPrompt = function(options) {
		var
		  $this = $(this);
		  defaults = {
			promptcolor: '#777',
			color: '#000'
		  },
		  settings = $.extend({}, defaults, options);
		  
		 $this.css({color:settings.promptcolor});

		 $this.click(function(){
		 	if($this.val()==this.defaultValue){
		 		$this.val('');
		 		$this.css({color:settings.color});
		 		};
		 });
		 $this.blur(function(){
		 	if($this.val()==''){
		 		$this.val(this.defaultValue);
		 		$this.css({color:settings.promptcolor});
		 		};
		 });
	};
