$(document).ready(function() {
	$('.smart-labels input[type="text"], .smart-labels textarea').each(function() {
		var desc = $('#'+$(this).attr('id')+'_description').hide();
		if (desc.length < 1) {
			$(this).addClass('focused');
			return;
		}

		if($(this).val() === '') {
			$(this).val(desc.html());
			$(this).removeClass('focused');
		} else {
			$(this).addClass('focused');
		}

		$(this).focus(function() {
			if($(this).val() === desc.html()) {
				$(this).val('').addClass('focused');
			}
		});

		$(this).blur(function() {
			if($(this).val() === '') {
				$(this).removeClass('focused').val(desc.html());
			}
		});
	});
	
});

