$(function() {
	// Blink fields
	$('.blink').live('focus', function() {
		if(this.value == this.title) {
			this.value = '';
		}
	})
	.live('blur', function() {
		if(this.value == '') {
			this.value = this.title;
		}
	});
	
});
