$(document).ready(function() {
	$('.required').blur(function() {
		if ($(this).val() == '')
			$(this).val('required').addClass('color_light');
		else
			$(this).removeClass('color_light');
	}).focus(function() {
		if ($(this).hasClass('color_light'))
			$(this).val('').removeClass('color_light');
	});

	$('#submit_post').click(function() {
		$('#post_form .required.color_light').val('');
	});
});
