$(document).ready(function() {
	$('.search_field').focus(function () {
		var text = $(this).val();
		if (text == 'Enter product name') {
			$(this).val('');
		}
	});
	
	$('.search_field').blur(function () {
		var text = $(this).val();
		if (text == '') {
			$(this).val('Enter product name');
		}
	});
	
	$('.newsletter_email').focus(function () {
		var text = $(this).val();
		if (text == 'Sign up to our newsletter') {
			$(this).val('');
		}
	});
	
	$('.newsletter_email').blur(function () {
		var text = $(this).val();
		if (text == '') {
			$(this).val('Sign up to our newsletter');
		}
	});
	
	$('#open_date').focus(function () {
		var text = $(this).val();
		if (text == 'DD/MM/YYYY') {
			$(this).val('');
		}
	});
	$('#open_date').blur(function () {
		var text = $(this).val();
		if (text == '') {
			$(this).val('DD/MM/YYYY');
		}
	});
});