jQuery(function($) {
	$('input#frist-name')
		.focus(function(){if ($(this).val() == 'Frist Name') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Frist Name');} })
	$('input#frist-family')
		.focus(function(){if ($(this).val() == 'Family Name') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Family Name');} })
	$('input#company')
		.focus(function(){if ($(this).val() == 'Company / Organization') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Company / Organization');} })
	$('input#telephone')
		.focus(function(){if ($(this).val() == 'Telephone') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Telephone');} })
	$('input#email')
		.focus(function(){if ($(this).val() == 'Email') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Email');} })
	$('input#website')
		.focus(function(){if ($(this).val() == 'Website') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Website');} })
	$('textarea#comments')
		.focus(function(){if ($(this).val() == 'Comments') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Comments');} })
});