$(document).ready(function(){
	$('input.with-hint')
	.focus(function(){
		if (this.value == '') {
			$(this).removeClass('empty');
		}
	})
	.blur(function(){
		if (this.value == '') {
			$(this).addClass('empty');
		}
	})
	.filter("[value='']").each(function(){
		$(this).addClass('empty');
	});	
});