function default_input(target)
{
	this.target = target; 
	this.defaultVal = $(target).val(); 
	
}
default_input.prototype.run = function()
{
	
	var target = this.target; 
	mySelf = this; 
	$(target).focus(function()
	{
		 
		if($(this).val() == mySelf.defaultVal)
		{
			$(this).val(''); 
			$(this).removeAttr('class');
		}
	}); 
	$(target).blur(function()
	{
		if($(this).val() == '')
		{
			$(this).val(mySelf.defaultVal); 
			$(this).attr('class', 'input-default'); 
		}else{
			$(this).removeAttr('class');
		}
	}); 
}
