/**
 * @author Thomas Sømoen
 */
(function($){
	$.fn.labelize = function(){
		return $(this).each(function(){
			$(this).data('label',$(this).val());
			$(this).focus(function(){
				if($(this).val() == $(this).data('label')){
					$(this).addClass('focus');
					$(this).val('');
				}
			});
			
			$(this).blur(function(){
				if($(this).val() == ''){
					$(this).removeClass('focus');
					$(this).val($(this).data('label'));
				}
			});
    });
}
	
	$(document).ready(function(){
	$('input[type="text"], textarea').labelize();
	});
})(jQuery);
