// JavaScript Document
$(document).ready(function(){
	var nameDefaultValue = "Your Name";
	var emailDefaultValue = "youremail@example.com";
	$('#name').focus(function() {
		if($.trim(this.value) === nameDefaultValue) this.value = '';
	}).blur(function(){
		if($.trim(this.value) === '') this.value = nameDefaultValue;
	});
	$('#email').focus(function() {
		if($.trim(this.value) === emailDefaultValue) this.value = '';
	}).blur(function(){
		if($.trim(this.value) === '') this.value = emailDefaultValue;
	});
});
