$(document).ready(function() {
	$('#home-form form').find('input').focus(function() {
		if($(this).attr('value') == $(this).parent().attr('rel')) { $(this).attr('value',''); }
	});
	
	$('#home-form form').find('input').blur(function() {
		if(!$(this).attr('value')) { $(this).attr('value',$(this).parent().attr('rel')); }
	});
});

