$(document).ready(function() {
	
	$('#name').focus(function() {
		if (this.value == 'Vardas, pavardė') {
			$(this).val('');
		}
	});
	$('#name').blur(function() {
		if (this.value == '') {
			$(this).val('Vardas, pavardė');
		}
	});
	
	$('#email').focus(function() {
		if (this.value == 'Elektroninis paštas') {
			$(this).val('');
		}
	});
	$('#email').blur(function() {
		if (this.value == '') {
			$(this).val('Elektroninis paštas');
		}
	});
	
	$('#phone').focus(function() {
		if (this.value == 'Telefonas') {
			$(this).val('');
		}
	});
	$('#phone').blur(function() {
		if (this.value == '') {
			$(this).val('Telefonas');
		}
	});
	
	$('#company').focus(function() {
		if (this.value == 'Įmonės pavadinimas') {
			$(this).val('');
		}
	});
	$('#company').blur(function() {
		if (this.value == '') {
			$(this).val('Įmonės pavadinimas');
		}
	});
	
	$('#msg').focus(function() {
		if (this.value == 'Žinutė') {
			$(this).val('');
		}
	});
	$('#msg').blur(function() {
		if (this.value == '') {
			$(this).val('Žinutė');
		}
	});
	
	$('.back').click(function (e) {
		e.preventDefault();
		history.go(-1);
	});
});