$(document).ready(function(){
	$('#contact-form input[type=text], #contact-form textarea').focus(function(){
		$(this).css('color', '#333').val('');																
	})
	$('#contact-form input[type=text], #contact-form textarea').blur(function(){
		if ($(this).val() == '')
			  {$(this).css('color', '#999').val(this.defaultValue);}																
	})					   
						   
});