function focusFields(){

$("#homeForm input, #homeForm textArea,#interiorForm input, #interiorForm textArea").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
		console.log('i am focused!');
	}
}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
	}
});
}

function setDate(){
	new Date();
var d = new Date();
document.write(d.getFullYear()); 
}

