function LabelsClean(){
	$('.LC_Active input.text-input').each(function(i){
		var	inputLabel=$(this).val();
		$(this).focus(function(){if ($(this).val() == inputLabel) {$(this).val('')}});
		$(this).blur(function(){if ($(this).val() == '') {$(this).val(inputLabel)}})
	});
	$('.LC_Active textarea.textarea-input').each(function(i){
		var	textareaLabel=$(this).val();
		$(this).focus(function(){if ($(this).val() == textareaLabel) {$(this).val('')}});
		$(this).blur(function(){if ($(this).val() == '') {$(this).val(textareaLabel)}})
	})
};

